* A bug about system call on ARM
@ 2013-05-29 6:52 Wang, Yalin
2013-05-29 7:34 ` richard -rw- weinberger
0 siblings, 1 reply; 36+ messages in thread
From: Wang, Yalin @ 2013-05-29 6:52 UTC (permalink / raw)
To: 'linux-arch@vger.kernel.org',
'linux-kernel@vger.kernel.org'
[-- Attachment #1: Type: text/plain, Size: 2279 bytes --]
Hi all,
I am a new comer to this mailing list ,
I am happy to join this community .
I have a bug reported from our android phones which is caused by the system call .
It seems like kernel bugs from my view .
Crash in file arch\arm\kernel\ entry-common.S
/***************************************************************/
ENTRY(vector_swi)
sub sp, sp, #S_FRAME_SIZE
stmia sp, {r0 - r12} @ Calling r0 - r12
ARM( add r8, sp, #S_PC )
ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
THUMB( mov r8, sp )
THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
mrs r8, spsr @ called from non-FIQ mode, so ok.
str lr, [sp, #S_PC] @ Save calling PC
str r8, [sp, #S_PSR] @ Save CPSR
str r0, [sp, #S_OLD_R0] @ Save OLD_R0
zero_fp
/*
* Get the system call number.
*/
#if defined(CONFIG_OABI_COMPAT)
/*
* If we have CONFIG_OABI_COMPAT then we need to look at the swi
* value to determine if it is an EABI or an old ABI call.
*/
#ifdef CONFIG_ARM_THUMB
tst r8, #PSR_T_BIT
movne r10, #0 @ no thumb OABI emulation
ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction
#else
ldr r10, [lr, #-4] @ get SWI instruction
A710( and ip, r10, #0x0f000000 @ check for SWI )
A710( teq ip, #0x0f000000 )
A710( bne .Larm710bug )
#endif
#ifdef CONFIG_CPU_ENDIAN_BE8
rev r10, r10 @ little endian instruction
#endif
/***************************************************************************************************/
Then reason why it will crash when get SWI instruction is maybe
This page is clear to aged by kernel,
But this MMU fault happpened in kernel,
So the kernel do_page_fault function will not clear this page to young,
So that will crash .
It should poll this page to make it present or the fault should be handled by fixup section ,
Anyway, this place should not crash by kernel .
The kernel version I used is 3.4.0
I have add the kernel log and the call stack recovered by trace32 tools
Pls have a look at it .
Thanks .
Sony Mobile Communications
Tel: +86 10 5966 9819
Phone: 18610323092
Address: No.16 Guangshun South Street, Chaoyang, Beijing, P.R.C.
sonymobile.com
[-- Attachment #2: kernel.log --]
[-- Type: application/octet-stream, Size: 131072 bytes --]
_size_pst: can not get dst interface!
<3>[43707.009975] tcp_get_mem_size_pst: can not get dst interface!
<3>[43710.929126] tcp_get_mem_size_pst: can not get dst interface!
<3>[43710.932850] tcp_get_mem_size_pst: can not get dst interface!
<3>[43711.439121] tcp_get_mem_size_pst: can not get dst interface!
<3>[43711.449529] tcp_get_mem_size_pst: can not get dst interface!
<3>[43711.466010] qtaguid: iface_stat: stat_update() lo not found
<3>[43711.965659] tcp_get_mem_size_pst: can not get dst interface!
<3>[43711.975212] tcp_get_mem_size_pst: can not get dst interface!
<3>[43711.990808] qtaguid: iface_stat: stat_update() lo not found
<3>[43711.993158] tcp_get_mem_size_pst: can not get dst interface!
<3>[43712.004847] tcp_get_mem_size_pst: can not get dst interface!
<3>[43712.025876] qtaguid: iface_stat: stat_update() lo not found
<3>[43715.941395] tcp_get_mem_size_pst: can not get dst interface!
<3>[43715.950918] tcp_get_mem_size_pst: can not get dst interface!
<3>[43715.966575] qtaguid: iface_stat: stat_update() lo not found
<3>[43716.466040] tcp_get_mem_size_pst: can not get dst interface!
<3>[43716.476417] tcp_get_mem_size_pst: can not get dst interface!
<3>[43716.511119] qtaguid: iface_stat: stat_update() lo not found
<3>[43717.011226] tcp_get_mem_size_pst: can not get dst interface!
<3>[43717.020046] tcp_get_mem_size_pst: can not get dst interface!
<3>[43717.036955] tcp_get_mem_size_pst: can not get dst interface!
<3>[43717.042387] qtaguid: iface_stat: stat_update() lo not found
<3>[43717.051848] tcp_get_mem_size_pst: can not get dst interface!
<3>[43717.072084] tcp_get_mem_size_pst: can not get dst interface!
<3>[43717.078096] qtaguid: iface_stat: stat_update() lo not found
<3>[43717.089938] tcp_get_mem_size_pst: can not get dst interface!
<3>[43717.203870] tcp_get_mem_size_pst: can not get dst interface!
<3>[43717.206831] tcp_get_mem_size_pst: can not get dst interface!
<6>[43720.527722] SLIM_CL: skip reconfig sequence
<3>[43722.380461] tcp_get_mem_size_pst: can not get dst interface!
<3>[43722.394684] tcp_get_mem_size_pst: can not get dst interface!
<3>[43723.404817] tcp_get_mem_size_pst: can not get dst interface!
<3>[43723.415041] tcp_get_mem_size_pst: can not get dst interface!
<3>[43723.485574] tcp_get_mem_size_pst: can not get dst interface!
<3>[43723.507335] tcp_get_mem_size_pst: can not get dst interface!
<3>[43724.023159] tcp_get_mem_size_pst: can not get dst interface!
<3>[43724.029324] tcp_get_mem_size_pst: can not get dst interface!
<3>[43724.042021] qtaguid: iface_stat: stat_update() lo not found
<6>[43726.733674] SLIM_CL: skip reconfig sequence
<3>[43727.962363] tcp_get_mem_size_pst: can not get dst interface!
<3>[43727.974327] tcp_get_mem_size_pst: can not get dst interface!
<3>[43727.990289] qtaguid: iface_stat: stat_update() lo not found
<3>[43728.490304] tcp_get_mem_size_pst: can not get dst interface!
<3>[43728.500040] tcp_get_mem_size_pst: can not get dst interface!
<3>[43728.517345] qtaguid: iface_stat: stat_update() lo not found
<3>[43729.016903] tcp_get_mem_size_pst: can not get dst interface!
<3>[43729.026242] tcp_get_mem_size_pst: can not get dst interface!
<3>[43729.043028] tcp_get_mem_size_pst: can not get dst interface!
<3>[43729.048735] qtaguid: iface_stat: stat_update() lo not found
<3>[43729.056549] tcp_get_mem_size_pst: can not get dst interface!
<3>[43729.078035] qtaguid: iface_stat: stat_update() lo not found
<3>[43732.992700] tcp_get_mem_size_pst: can not get dst interface!
<3>[43733.002070] tcp_get_mem_size_pst: can not get dst interface!
<3>[43733.520489] tcp_get_mem_size_pst: can not get dst interface!
<3>[43733.530622] tcp_get_mem_size_pst: can not get dst interface!
<3>[43733.546370] qtaguid: iface_stat: stat_update() lo not found
<3>[43734.046324] tcp_get_mem_size_pst: can not get dst interface!
<3>[43734.056945] tcp_get_mem_size_pst: can not get dst interface!
<3>[43734.073274] tcp_get_mem_size_pst: can not get dst interface!
<3>[43734.079103] qtaguid: iface_stat: stat_update() lo not found
<3>[43734.089511] tcp_get_mem_size_pst: can not get dst interface!
<3>[43734.108800] qtaguid: iface_stat: stat_update() lo not found
<3>[43738.025326] tcp_get_mem_size_pst: can not get dst interface!
<3>[43738.035581] tcp_get_mem_size_pst: can not get dst interface!
<3>[43738.051452] qtaguid: iface_stat: stat_update() lo not found
<3>[43738.551345] tcp_get_mem_size_pst: can not get dst interface!
<3>[43738.561020] tcp_get_mem_size_pst: can not get dst interface!
<3>[43738.577135] qtaguid: iface_stat: stat_update() lo not found
<3>[43739.077241] tcp_get_mem_size_pst: can not get dst interface!
<3>[43739.088229] tcp_get_mem_size_pst: can not get dst interface!
<3>[43739.103916] tcp_get_mem_size_pst: can not get dst interface!
<3>[43739.110142] qtaguid: iface_stat: stat_update() lo not found
<3>[43739.119634] tcp_get_mem_size_pst: can not get dst interface!
<3>[43743.055145] tcp_get_mem_size_pst: can not get dst interface!
<3>[43743.064911] tcp_get_mem_size_pst: can not get dst interface!
<3>[43743.082094] qtaguid: iface_stat: stat_update() lo not found
<3>[43743.581774] tcp_get_mem_size_pst: can not get dst interface!
<3>[43743.593310] tcp_get_mem_size_pst: can not get dst interface!
<3>[43743.612447] qtaguid: iface_stat: stat_update() lo not found
<3>[43744.112279] tcp_get_mem_size_pst: can not get dst interface!
<3>[43744.121527] tcp_get_mem_size_pst: can not get dst interface!
<3>[43744.136726] tcp_get_mem_size_pst: can not get dst interface!
<3>[43744.140876] qtaguid: iface_stat: stat_update() lo not found
<3>[43744.149544] tcp_get_mem_size_pst: can not get dst interface!
<3>[43748.069764] tcp_get_mem_size_pst: can not get dst interface!
<3>[43748.079714] tcp_get_mem_size_pst: can not get dst interface!
<3>[43748.094058] qtaguid: iface_stat: stat_update() lo not found
<3>[43748.594134] tcp_get_mem_size_pst: can not get dst interface!
<3>[43748.603657] tcp_get_mem_size_pst: can not get dst interface!
<3>[43748.621450] qtaguid: iface_stat: stat_update() lo not found
<3>[43749.121526] tcp_get_mem_size_pst: can not get dst interface!
<3>[43749.131598] tcp_get_mem_size_pst: can not get dst interface!
<3>[43749.171549] tcp_get_mem_size_pst: can not get dst interface!
<3>[43749.176646] qtaguid: iface_stat: stat_update() lo not found
<3>[43749.186016] tcp_get_mem_size_pst: can not get dst interface!
<3>[43749.206190] tcp_get_mem_size_pst: can not get dst interface!
<3>[43749.209791] tcp_get_mem_size_pst: can not get dst interface!
<3>[43749.319176] tcp_get_mem_size_pst: can not get dst interface!
<3>[43749.322351] tcp_get_mem_size_pst: can not get dst interface!
<6>[43749.951528] msm_enqueue: queue eventdata new max is 1
<6>[43750.020687] msm_enqueue: queue control new max is 1
<6>[43750.031644] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[43750.037626] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<6>[43750.115636] vfe32_proc_general: cmdID = RESET
<6>[43750.116643] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40
<6>[43750.126501] configure_pingpong_buffers Configure ping/pong address for 25
<6>[43750.126623] vfe32_proc_general: cmdID = START
<6>[43750.462500] msm_rotator msm_rotator: scale: 0, rot: 4, src: 1280x720, dst: 720x1280, s_dst: 720x1280, sfmt: 6, dfmt: 6 => fyuv: 1, pl: 3
<6>[43751.238481] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<3>[43752.509685] msm_mctl_reserve_free_buf: stream is turned off
<6>[43752.578111] SLIM_CL: skip reconfig sequence
<6>[43752.629111] vfe32_proc_general: cmdID = STOP
<6>[43752.644279] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[43752.645134] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<3>[43752.869184] msm_release_ion_client Calling ion_client_destroy
<6>[43754.009059] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<3>[43754.486916] tcp_get_mem_size_pst: can not get dst interface!
<3>[43754.504008] tcp_get_mem_size_pst: can not get dst interface!
<3>[43755.513866] tcp_get_mem_size_pst: can not get dst interface!
<3>[43755.523541] tcp_get_mem_size_pst: can not get dst interface!
<3>[43755.596179] tcp_get_mem_size_pst: can not get dst interface!
<3>[43755.609364] tcp_get_mem_size_pst: can not get dst interface!
<3>[43756.122778] tcp_get_mem_size_pst: can not get dst interface!
<3>[43756.130896] tcp_get_mem_size_pst: can not get dst interface!
<6>[43758.843425] SLIM_CL: skip reconfig sequence
<3>[43760.053558] tcp_get_mem_size_pst: can not get dst interface!
<3>[43760.063507] tcp_get_mem_size_pst: can not get dst interface!
<3>[43760.080080] qtaguid: iface_stat: stat_update() lo not found
<3>[43760.589068] tcp_get_mem_size_pst: can not get dst interface!
<3>[43760.600269] tcp_get_mem_size_pst: can not get dst interface!
<3>[43761.115941] tcp_get_mem_size_pst: can not get dst interface!
<3>[43761.126501] tcp_get_mem_size_pst: can not get dst interface!
<3>[43761.149422] qtaguid: iface_stat: stat_update() lo not found
<3>[43761.152718] tcp_get_mem_size_pst: can not get dst interface!
<3>[43761.163919] tcp_get_mem_size_pst: can not get dst interface!
<3>[43761.184429] qtaguid: iface_stat: stat_update() lo not found
<3>[43765.101078] tcp_get_mem_size_pst: can not get dst interface!
<3>[43765.112920] tcp_get_mem_size_pst: can not get dst interface!
<3>[43765.128882] qtaguid: iface_stat: stat_update() lo not found
<3>[43765.628928] tcp_get_mem_size_pst: can not get dst interface!
<3>[43765.640037] tcp_get_mem_size_pst: can not get dst interface!
<3>[43765.656793] qtaguid: iface_stat: stat_update() lo not found
<3>[43766.156564] tcp_get_mem_size_pst: can not get dst interface!
<3>[43766.166452] tcp_get_mem_size_pst: can not get dst interface!
<3>[43766.183544] tcp_get_mem_size_pst: can not get dst interface!
<3>[43766.190014] qtaguid: iface_stat: stat_update() lo not found
<3>[43766.201032] tcp_get_mem_size_pst: can not get dst interface!
<3>[43766.222274] qtaguid: iface_stat: stat_update() lo not found
<3>[43770.132148] tcp_get_mem_size_pst: can not get dst interface!
<3>[43770.144203] tcp_get_mem_size_pst: can not get dst interface!
<3>[43770.162088] qtaguid: iface_stat: stat_update() lo not found
<3>[43770.661920] tcp_get_mem_size_pst: can not get dst interface!
<3>[43770.671839] tcp_get_mem_size_pst: can not get dst interface!
<3>[43770.687161] qtaguid: iface_stat: stat_update() lo not found
<3>[43771.186749] tcp_get_mem_size_pst: can not get dst interface!
<3>[43771.194104] tcp_get_mem_size_pst: can not get dst interface!
<3>[43771.208540] tcp_get_mem_size_pst: can not get dst interface!
<3>[43771.211531] tcp_get_mem_size_pst: can not get dst interface!
<3>[43775.127112] tcp_get_mem_size_pst: can not get dst interface!
<3>[43775.138435] tcp_get_mem_size_pst: can not get dst interface!
<3>[43775.154458] qtaguid: iface_stat: stat_update() lo not found
<3>[43775.654443] tcp_get_mem_size_pst: can not get dst interface!
<3>[43775.669733] tcp_get_mem_size_pst: can not get dst interface!
<3>[43776.180950] tcp_get_mem_size_pst: can not get dst interface!
<3>[43776.192395] tcp_get_mem_size_pst: can not get dst interface!
<3>[43776.197797] tcp_get_mem_size_pst: can not get dst interface!
<3>[43776.200941] tcp_get_mem_size_pst: can not get dst interface!
<3>[43780.111821] tcp_get_mem_size_pst: can not get dst interface!
<3>[43780.121099] tcp_get_mem_size_pst: can not get dst interface!
<3>[43780.135657] qtaguid: iface_stat: stat_update() lo not found
<3>[43780.635734] tcp_get_mem_size_pst: can not get dst interface!
<3>[43780.644676] tcp_get_mem_size_pst: can not get dst interface!
<3>[43780.661768] qtaguid: iface_stat: stat_update() lo not found
<3>[43781.161752] tcp_get_mem_size_pst: can not get dst interface!
<3>[43781.170664] tcp_get_mem_size_pst: can not get dst interface!
<3>[43781.186687] tcp_get_mem_size_pst: can not get dst interface!
<3>[43781.193219] qtaguid: iface_stat: stat_update() lo not found
<3>[43781.201765] tcp_get_mem_size_pst: can not get dst interface!
<3>[43781.221084] tcp_get_mem_size_pst: can not get dst interface!
<3>[43781.229538] qtaguid: iface_stat: stat_update() lo not found
<3>[43781.240586] tcp_get_mem_size_pst: can not get dst interface!
<3>[43781.347133] tcp_get_mem_size_pst: can not get dst interface!
<3>[43781.349910] tcp_get_mem_size_pst: can not get dst interface!
<6>[43784.639366] SLIM_CL: skip reconfig sequence
<3>[43786.540876] tcp_get_mem_size_pst: can not get dst interface!
<3>[43786.555618] tcp_get_mem_size_pst: can not get dst interface!
<3>[43787.538557] tcp_get_mem_size_pst: can not get dst interface!
<3>[43787.548720] tcp_get_mem_size_pst: can not get dst interface!
<3>[43787.603779] tcp_get_mem_size_pst: can not get dst interface!
<3>[43787.619344] tcp_get_mem_size_pst: can not get dst interface!
<3>[43788.127570] tcp_get_mem_size_pst: can not get dst interface!
<3>[43788.132209] tcp_get_mem_size_pst: can not get dst interface!
<3>[43788.144569] qtaguid: iface_stat: stat_update() lo not found
<6>[43790.816445] SLIM_CL: skip reconfig sequence
<3>[43792.062103] tcp_get_mem_size_pst: can not get dst interface!
<3>[43792.073060] tcp_get_mem_size_pst: can not get dst interface!
<3>[43792.089663] qtaguid: iface_stat: stat_update() lo not found
<3>[43792.609059] tcp_get_mem_size_pst: can not get dst interface!
<3>[43792.618551] tcp_get_mem_size_pst: can not get dst interface!
<3>[43792.651024] qtaguid: iface_stat: stat_update() lo not found
<3>[43793.152199] tcp_get_mem_size_pst: can not get dst interface!
<3>[43793.161691] tcp_get_mem_size_pst: can not get dst interface!
<3>[43793.177959] tcp_get_mem_size_pst: can not get dst interface!
<3>[43793.182933] qtaguid: iface_stat: stat_update() lo not found
<3>[43793.191540] tcp_get_mem_size_pst: can not get dst interface!
<3>[43797.109837] tcp_get_mem_size_pst: can not get dst interface!
<3>[43797.119207] tcp_get_mem_size_pst: can not get dst interface!
<3>[43797.134131] qtaguid: iface_stat: stat_update() lo not found
<3>[43797.634147] tcp_get_mem_size_pst: can not get dst interface!
<3>[43797.644066] tcp_get_mem_size_pst: can not get dst interface!
<3>[43797.661005] qtaguid: iface_stat: stat_update() lo not found
<3>[43798.160959] tcp_get_mem_size_pst: can not get dst interface!
<3>[43798.171580] tcp_get_mem_size_pst: can not get dst interface!
<3>[43798.190564] tcp_get_mem_size_pst: can not get dst interface!
<3>[43798.195599] qtaguid: iface_stat: stat_update() lo not found
<3>[43798.204695] tcp_get_mem_size_pst: can not get dst interface!
<3>[43798.224899] qtaguid: iface_stat: stat_update() lo not found
<3>[43802.140266] tcp_get_mem_size_pst: can not get dst interface!
<3>[43802.150918] tcp_get_mem_size_pst: can not get dst interface!
<3>[43802.166178] qtaguid: iface_stat: stat_update() lo not found
<3>[43802.666132] tcp_get_mem_size_pst: can not get dst interface!
<3>[43802.676570] tcp_get_mem_size_pst: can not get dst interface!
<3>[43802.692990] qtaguid: iface_stat: stat_update() lo not found
<3>[43803.192944] tcp_get_mem_size_pst: can not get dst interface!
<3>[43803.202955] tcp_get_mem_size_pst: can not get dst interface!
<3>[43803.220138] tcp_get_mem_size_pst: can not get dst interface!
<3>[43803.225815] qtaguid: iface_stat: stat_update() lo not found
<3>[43803.234666] tcp_get_mem_size_pst: can not get dst interface!
<3>[43803.255999] qtaguid: iface_stat: stat_update() lo not found
<3>[43807.171275] tcp_get_mem_size_pst: can not get dst interface!
<3>[43807.182384] tcp_get_mem_size_pst: can not get dst interface!
<3>[43807.197309] qtaguid: iface_stat: stat_update() lo not found
<3>[43807.697293] tcp_get_mem_size_pst: can not get dst interface!
<3>[43807.706083] tcp_get_mem_size_pst: can not get dst interface!
<3>[43807.721649] qtaguid: iface_stat: stat_update() lo not found
<3>[43808.221633] tcp_get_mem_size_pst: can not get dst interface!
<3>[43808.230301] tcp_get_mem_size_pst: can not get dst interface!
<3>[43808.245744] tcp_get_mem_size_pst: can not get dst interface!
<3>[43808.251238] qtaguid: iface_stat: stat_update() lo not found
<3>[43808.261584] tcp_get_mem_size_pst: can not get dst interface!
<3>[43808.281881] qtaguid: iface_stat: stat_update() lo not found
<3>[43812.202924] tcp_get_mem_size_pst: can not get dst interface!
<3>[43812.213301] tcp_get_mem_size_pst: can not get dst interface!
<3>[43812.229294] qtaguid: iface_stat: stat_update() lo not found
<3>[43812.729157] tcp_get_mem_size_pst: can not get dst interface!
<3>[43812.737580] tcp_get_mem_size_pst: can not get dst interface!
<3>[43812.752261] qtaguid: iface_stat: stat_update() lo not found
<3>[43813.252184] tcp_get_mem_size_pst: can not get dst interface!
<3>[43813.262927] tcp_get_mem_size_pst: can not get dst interface!
<3>[43813.279378] qtaguid: iface_stat: stat_update() lo not found
<3>[43813.283803] tcp_get_mem_size_pst: can not get dst interface!
<3>[43813.292318] tcp_get_mem_size_pst: can not get dst interface!
<3>[43813.311485] tcp_get_mem_size_pst: can not get dst interface!
<3>[43813.317376] qtaguid: iface_stat: stat_update() lo not found
<3>[43813.330377] tcp_get_mem_size_pst: can not get dst interface!
<3>[43813.436802] tcp_get_mem_size_pst: can not get dst interface!
<3>[43813.439457] tcp_get_mem_size_pst: can not get dst interface!
<6>[43816.725525] SLIM_CL: skip reconfig sequence
<3>[43818.606312] tcp_get_mem_size_pst: can not get dst interface!
<3>[43818.647606] tcp_get_mem_size_pst: can not get dst interface!
<3>[43819.612782] tcp_get_mem_size_pst: can not get dst interface!
<3>[43819.622854] tcp_get_mem_size_pst: can not get dst interface!
<3>[43819.687344] tcp_get_mem_size_pst: can not get dst interface!
<3>[43819.703367] tcp_get_mem_size_pst: can not get dst interface!
<3>[43820.218795] tcp_get_mem_size_pst: can not get dst interface!
<3>[43820.224899] tcp_get_mem_size_pst: can not get dst interface!
<6>[43822.924243] SLIM_CL: skip reconfig sequence
<3>[43824.154183] tcp_get_mem_size_pst: can not get dst interface!
<3>[43824.165232] tcp_get_mem_size_pst: can not get dst interface!
<3>[43824.180553] qtaguid: iface_stat: stat_update() lo not found
<3>[43824.688961] tcp_get_mem_size_pst: can not get dst interface!
<3>[43824.699582] tcp_get_mem_size_pst: can not get dst interface!
<3>[43824.727386] qtaguid: iface_stat: stat_update() lo not found
<3>[43825.221359] tcp_get_mem_size_pst: can not get dst interface!
<3>[43825.231491] tcp_get_mem_size_pst: can not get dst interface!
<3>[43825.247728] tcp_get_mem_size_pst: can not get dst interface!
<3>[43825.251818] qtaguid: iface_stat: stat_update() lo not found
<3>[43825.264362] tcp_get_mem_size_pst: can not get dst interface!
<3>[43825.284261] qtaguid: iface_stat: stat_update() lo not found
<3>[43829.201002] tcp_get_mem_size_pst: can not get dst interface!
<3>[43829.212233] tcp_get_mem_size_pst: can not get dst interface!
<3>[43829.729614] tcp_get_mem_size_pst: can not get dst interface!
<3>[43829.738954] tcp_get_mem_size_pst: can not get dst interface!
<3>[43829.753756] qtaguid: iface_stat: stat_update() lo not found
<3>[43830.253069] tcp_get_mem_size_pst: can not get dst interface!
<3>[43830.261737] tcp_get_mem_size_pst: can not get dst interface!
<3>[43830.279042] qtaguid: iface_stat: stat_update() lo not found
<3>[43830.281179] tcp_get_mem_size_pst: can not get dst interface!
<3>[43830.292441] tcp_get_mem_size_pst: can not get dst interface!
<3>[43830.310783] qtaguid: iface_stat: stat_update() lo not found
<3>[43834.231919] tcp_get_mem_size_pst: can not get dst interface!
<3>[43834.241533] tcp_get_mem_size_pst: can not get dst interface!
<3>[43834.256335] qtaguid: iface_stat: stat_update() lo not found
<3>[43834.756320] tcp_get_mem_size_pst: can not get dst interface!
<3>[43834.766819] tcp_get_mem_size_pst: can not get dst interface!
<3>[43834.782903] qtaguid: iface_stat: stat_update() lo not found
<3>[43835.282857] tcp_get_mem_size_pst: can not get dst interface!
<3>[43835.292318] tcp_get_mem_size_pst: can not get dst interface!
<3>[43835.307548] tcp_get_mem_size_pst: can not get dst interface!
<3>[43835.313347] qtaguid: iface_stat: stat_update() lo not found
<3>[43835.322900] tcp_get_mem_size_pst: can not get dst interface!
<3>[43835.341761] qtaguid: iface_stat: stat_update() lo not found
<3>[43839.262256] tcp_get_mem_size_pst: can not get dst interface!
<3>[43839.273823] tcp_get_mem_size_pst: can not get dst interface!
<3>[43839.289633] qtaguid: iface_stat: stat_update() lo not found
<3>[43839.789709] tcp_get_mem_size_pst: can not get dst interface!
<3>[43839.798529] tcp_get_mem_size_pst: can not get dst interface!
<3>[43839.813149] qtaguid: iface_stat: stat_update() lo not found
<3>[43840.313164] tcp_get_mem_size_pst: can not get dst interface!
<3>[43840.321984] tcp_get_mem_size_pst: can not get dst interface!
<3>[43840.337244] tcp_get_mem_size_pst: can not get dst interface!
<3>[43840.339839] qtaguid: iface_stat: stat_update() lo not found
<3>[43840.350887] tcp_get_mem_size_pst: can not get dst interface!
<3>[43844.277150] tcp_get_mem_size_pst: can not get dst interface!
<3>[43844.286733] tcp_get_mem_size_pst: can not get dst interface!
<3>[43844.301108] qtaguid: iface_stat: stat_update() lo not found
<3>[43844.801215] tcp_get_mem_size_pst: can not get dst interface!
<3>[43844.810371] tcp_get_mem_size_pst: can not get dst interface!
<3>[43844.825021] qtaguid: iface_stat: stat_update() lo not found
<3>[43845.325128] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.333552] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.349880] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.355068] qtaguid: iface_stat: stat_update() lo not found
<3>[43845.363065] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.381652] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.390258] qtaguid: iface_stat: stat_update() lo not found
<3>[43845.392792] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.498819] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.501658] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.707396] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.728668] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.731018] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.753970] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.756564] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.773289] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.778264] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.787481] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.791143] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.796118] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.798194] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.805702] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.840586] qtaguid: iface_stat: stat_update() lo not found
<3>[43845.963309] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.969230] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.971610] tcp_get_mem_size_pst: can not get dst interface!
<3>[43845.974052] tcp_get_mem_size_pst: can not get dst interface!
<3>[43846.081118] tcp_get_mem_size_pst: can not get dst interface!
<3>[43846.089327] tcp_get_mem_size_pst: can not get dst interface!
<3>[43846.094821] tcp_get_mem_size_pst: can not get dst interface!
<3>[43846.100803] tcp_get_mem_size_pst: can not get dst interface!
<3>[43846.268452] tcp_get_mem_size_pst: can not get dst interface!
<3>[43846.271687] tcp_get_mem_size_pst: can not get dst interface!
<3>[43848.209730] tcp_get_mem_size_pst: can not get dst interface!
<3>[43848.219405] tcp_get_mem_size_pst: can not get dst interface!
<3>[43849.254412] tcp_get_mem_size_pst: can not get dst interface!
<3>[43849.264545] tcp_get_mem_size_pst: can not get dst interface!
<3>[43849.283712] tcp_get_mem_size_pst: can not get dst interface!
<3>[43849.296988] tcp_get_mem_size_pst: can not get dst interface!
<3>[43850.314018] tcp_get_mem_size_pst: can not get dst interface!
<3>[43850.323327] tcp_get_mem_size_pst: can not get dst interface!
<3>[43850.341975] qtaguid: iface_stat: stat_update() lo not found
<3>[43850.841563] tcp_get_mem_size_pst: can not get dst interface!
<3>[43850.851360] tcp_get_mem_size_pst: can not get dst interface!
<3>[43850.869367] qtaguid: iface_stat: stat_update() lo not found
<3>[43851.368406] tcp_get_mem_size_pst: can not get dst interface!
<3>[43851.377531] tcp_get_mem_size_pst: can not get dst interface!
<3>[43851.396362] qtaguid: iface_stat: stat_update() lo not found
<6>[43851.433750] SLIM_CL: skip reconfig sequence
<3>[43851.896164] tcp_get_mem_size_pst: can not get dst interface!
<3>[43851.908311] tcp_get_mem_size_pst: can not get dst interface!
<3>[43851.924456] tcp_get_mem_size_pst: can not get dst interface!
<3>[43851.927203] qtaguid: iface_stat: stat_update() lo not found
<3>[43851.937092] tcp_get_mem_size_pst: can not get dst interface!
<3>[43851.952871] qtaguid: iface_stat: stat_update() lo not found
<3>[43855.641716] tcp_get_mem_size_pst: can not get dst interface!
<3>[43855.650292] tcp_get_mem_size_pst: can not get dst interface!
<3>[43855.669184] tcp_get_mem_size_pst: can not get dst interface!
<3>[43855.682277] tcp_get_mem_size_pst: can not get dst interface!
<3>[43855.700162] tcp_get_mem_size_pst: can not get dst interface!
<3>[43855.713072] tcp_get_mem_size_pst: can not get dst interface!
<3>[43855.823556] tcp_get_mem_size_pst: can not get dst interface!
<3>[43855.826059] tcp_get_mem_size_pst: can not get dst interface!
<3>[43857.836008] tcp_get_mem_size_pst: can not get dst interface!
<3>[43857.848644] tcp_get_mem_size_pst: can not get dst interface!
<3>[43858.363370] tcp_get_mem_size_pst: can not get dst interface!
<3>[43858.375883] tcp_get_mem_size_pst: can not get dst interface!
<3>[43858.891464] tcp_get_mem_size_pst: can not get dst interface!
<3>[43858.909288] tcp_get_mem_size_pst: can not get dst interface!
<6>[43859.110417] SLIM_CL: skip reconfig sequence
<3>[43859.423709] tcp_get_mem_size_pst: can not get dst interface!
<3>[43859.435032] tcp_get_mem_size_pst: can not get dst interface!
<3>[43859.947835] tcp_get_mem_size_pst: can not get dst interface!
<3>[43859.970176] tcp_get_mem_size_pst: can not get dst interface!
<3>[43859.992547] tcp_get_mem_size_pst: can not get dst interface!
<3>[43860.015255] tcp_get_mem_size_pst: can not get dst interface!
<3>[43860.033506] tcp_get_mem_size_pst: can not get dst interface!
<3>[43860.120214] qtaguid: iface_stat: stat_update() lo not found
<3>[43860.128577] tcp_get_mem_size_pst: can not get dst interface!
<3>[43860.634788] tcp_get_mem_size_pst: can not get dst interface!
<3>[43860.646782] tcp_get_mem_size_pst: can not get dst interface!
<3>[43861.160501] tcp_get_mem_size_pst: can not get dst interface!
<3>[43861.197949] tcp_get_mem_size_pst: can not get dst interface!
<3>[43861.213362] tcp_get_mem_size_pst: can not get dst interface!
<3>[43861.226578] tcp_get_mem_size_pst: can not get dst interface!
<3>[43866.235398] tcp_get_mem_size_pst: can not get dst interface!
<3>[43866.238938] tcp_get_mem_size_pst: can not get dst interface!
<3>[43867.183788] tcp_get_mem_size_pst: can not get dst interface!
<3>[43867.191815] tcp_get_mem_size_pst: can not get dst interface!
<3>[43867.251787] tcp_get_mem_size_pst: can not get dst interface!
<3>[43867.280385] tcp_get_mem_size_pst: can not get dst interface!
<3>[43867.789434] tcp_get_mem_size_pst: can not get dst interface!
<3>[43867.792395] tcp_get_mem_size_pst: can not get dst interface!
<6>[43870.484933] SLIM_CL: skip reconfig sequence
<3>[43871.706297] tcp_get_mem_size_pst: can not get dst interface!
<3>[43871.719543] tcp_get_mem_size_pst: can not get dst interface!
<3>[43871.735596] qtaguid: iface_stat: stat_update() lo not found
<3>[43872.239549] tcp_get_mem_size_pst: can not get dst interface!
<3>[43872.269367] tcp_get_mem_size_pst: can not get dst interface!
<3>[43872.784582] tcp_get_mem_size_pst: can not get dst interface!
<3>[43872.796790] tcp_get_mem_size_pst: can not get dst interface!
<3>[43872.815590] qtaguid: iface_stat: stat_update() lo not found
<3>[43872.822030] tcp_get_mem_size_pst: can not get dst interface!
<3>[43872.834238] tcp_get_mem_size_pst: can not get dst interface!
<3>[43876.787420] tcp_get_mem_size_pst: can not get dst interface!
<3>[43876.800208] tcp_get_mem_size_pst: can not get dst interface!
<3>[43876.819863] qtaguid: iface_stat: stat_update() lo not found
<3>[43877.320275] tcp_get_mem_size_pst: can not get dst interface!
<3>[43877.332422] tcp_get_mem_size_pst: can not get dst interface!
<3>[43877.350063] qtaguid: iface_stat: stat_update() lo not found
<3>[43877.850017] tcp_get_mem_size_pst: can not get dst interface!
<3>[43877.861371] tcp_get_mem_size_pst: can not get dst interface!
<3>[43877.881789] qtaguid: iface_stat: stat_update() lo not found
<3>[43877.886703] tcp_get_mem_size_pst: can not get dst interface!
<3>[43877.903092] tcp_get_mem_size_pst: can not get dst interface!
<3>[43877.927142] qtaguid: iface_stat: stat_update() lo not found
<3>[43881.834788] tcp_get_mem_size_pst: can not get dst interface!
<3>[43881.848156] tcp_get_mem_size_pst: can not get dst interface!
<3>[43881.867048] qtaguid: iface_stat: stat_update() lo not found
<3>[43882.376982] tcp_get_mem_size_pst: can not get dst interface!
<3>[43882.389709] tcp_get_mem_size_pst: can not get dst interface!
<3>[43882.406190] qtaguid: iface_stat: stat_update() lo not found
<3>[43882.906083] tcp_get_mem_size_pst: can not get dst interface!
<3>[43882.921801] tcp_get_mem_size_pst: can not get dst interface!
<3>[43882.940693] tcp_get_mem_size_pst: can not get dst interface!
<3>[43882.945515] qtaguid: iface_stat: stat_update() lo not found
<3>[43882.957907] tcp_get_mem_size_pst: can not get dst interface!
<3>[43886.884414] tcp_get_mem_size_pst: can not get dst interface!
<3>[43886.897599] tcp_get_mem_size_pst: can not get dst interface!
<3>[43886.921465] qtaguid: iface_stat: stat_update() lo not found
<3>[43887.425784] tcp_get_mem_size_pst: can not get dst interface!
<3>[43887.438358] tcp_get_mem_size_pst: can not get dst interface!
<3>[43887.954733] tcp_get_mem_size_pst: can not get dst interface!
<3>[43887.967338] tcp_get_mem_size_pst: can not get dst interface!
<3>[43887.984582] qtaguid: iface_stat: stat_update() lo not found
<3>[43887.991449] tcp_get_mem_size_pst: can not get dst interface!
<3>[43888.004206] tcp_get_mem_size_pst: can not get dst interface!
<3>[43891.930866] tcp_get_mem_size_pst: can not get dst interface!
<3>[43891.942860] tcp_get_mem_size_pst: can not get dst interface!
<3>[43891.958914] qtaguid: iface_stat: stat_update() lo not found
<3>[43892.459692] tcp_get_mem_size_pst: can not get dst interface!
<3>[43892.471473] tcp_get_mem_size_pst: can not get dst interface!
<3>[43892.487313] qtaguid: iface_stat: stat_update() lo not found
<3>[43892.987573] tcp_get_mem_size_pst: can not get dst interface!
<3>[43892.999781] tcp_get_mem_size_pst: can not get dst interface!
<3>[43893.018459] qtaguid: iface_stat: stat_update() lo not found
<3>[43893.023953] tcp_get_mem_size_pst: can not get dst interface!
<3>[43893.035642] tcp_get_mem_size_pst: can not get dst interface!
<3>[43893.046477] tcp_get_mem_size_pst: can not get dst interface!
<3>[43893.050658] tcp_get_mem_size_pst: can not get dst interface!
<3>[43893.159952] tcp_get_mem_size_pst: can not get dst interface!
<3>[43893.162943] tcp_get_mem_size_pst: can not get dst interface!
<6>[43896.446294] SLIM_CL: skip reconfig sequence
<3>[43898.294028] tcp_get_mem_size_pst: can not get dst interface!
<3>[43898.331354] tcp_get_mem_size_pst: can not get dst interface!
<3>[43899.309074] tcp_get_mem_size_pst: can not get dst interface!
<3>[43899.317132] tcp_get_mem_size_pst: can not get dst interface!
<3>[43899.385467] tcp_get_mem_size_pst: can not get dst interface!
<3>[43899.393341] tcp_get_mem_size_pst: can not get dst interface!
<3>[43899.910539] tcp_get_mem_size_pst: can not get dst interface!
<3>[43899.918413] tcp_get_mem_size_pst: can not get dst interface!
<6>[43902.613484] SLIM_CL: skip reconfig sequence
<3>[43903.863690] tcp_get_mem_size_pst: can not get dst interface!
<3>[43903.874067] tcp_get_mem_size_pst: can not get dst interface!
<3>[43903.888778] qtaguid: iface_stat: stat_update() lo not found
<3>[43904.395294] tcp_get_mem_size_pst: can not get dst interface!
<3>[43904.404359] tcp_get_mem_size_pst: can not get dst interface!
<3>[43904.911272] tcp_get_mem_size_pst: can not get dst interface!
<3>[43904.922198] tcp_get_mem_size_pst: can not get dst interface!
<3>[43904.937489] tcp_get_mem_size_pst: can not get dst interface!
<3>[43904.939472] qtaguid: iface_stat: stat_update() lo not found
<3>[43904.950979] tcp_get_mem_size_pst: can not get dst interface!
<3>[43904.970145] qtaguid: iface_stat: stat_update() lo not found
<3>[43908.878706] tcp_get_mem_size_pst: can not get dst interface!
<3>[43908.887100] tcp_get_mem_size_pst: can not get dst interface!
<3>[43908.905412] qtaguid: iface_stat: stat_update() lo not found
<3>[43909.404664] tcp_get_mem_size_pst: can not get dst interface!
<3>[43909.413790] tcp_get_mem_size_pst: can not get dst interface!
<3>[43909.428928] qtaguid: iface_stat: stat_update() lo not found
<3>[43909.930866] tcp_get_mem_size_pst: can not get dst interface!
<3>[43909.939259] tcp_get_mem_size_pst: can not get dst interface!
<3>[43909.954183] qtaguid: iface_stat: stat_update() lo not found
<3>[43909.955953] tcp_get_mem_size_pst: can not get dst interface!
<3>[43909.966849] tcp_get_mem_size_pst: can not get dst interface!
<3>[43909.982354] qtaguid: iface_stat: stat_update() lo not found
<3>[43913.893539] tcp_get_mem_size_pst: can not get dst interface!
<3>[43913.902390] tcp_get_mem_size_pst: can not get dst interface!
<3>[43913.922289] qtaguid: iface_stat: stat_update() lo not found
<3>[43914.422122] tcp_get_mem_size_pst: can not get dst interface!
<3>[43914.432071] tcp_get_mem_size_pst: can not get dst interface!
<3>[43914.446965] qtaguid: iface_stat: stat_update() lo not found
<3>[43914.946767] tcp_get_mem_size_pst: can not get dst interface!
<3>[43914.956045] tcp_get_mem_size_pst: can not get dst interface!
<3>[43914.972679] qtaguid: iface_stat: stat_update() lo not found
<3>[43914.977867] tcp_get_mem_size_pst: can not get dst interface!
<3>[43914.987115] tcp_get_mem_size_pst: can not get dst interface!
<3>[43915.006251] qtaguid: iface_stat: stat_update() lo not found
<3>[43918.925555] tcp_get_mem_size_pst: can not get dst interface!
<3>[43918.934528] tcp_get_mem_size_pst: can not get dst interface!
<3>[43918.950490] qtaguid: iface_stat: stat_update() lo not found
<3>[43919.450231] tcp_get_mem_size_pst: can not get dst interface!
<3>[43919.459570] tcp_get_mem_size_pst: can not get dst interface!
<3>[43919.475013] qtaguid: iface_stat: stat_update() lo not found
<3>[43919.975090] tcp_get_mem_size_pst: can not get dst interface!
<3>[43919.983544] tcp_get_mem_size_pst: can not get dst interface!
<3>[43919.999170] qtaguid: iface_stat: stat_update() lo not found
<3>[43920.001154] tcp_get_mem_size_pst: can not get dst interface!
<3>[43920.012782] tcp_get_mem_size_pst: can not get dst interface!
<3>[43920.032773] qtaguid: iface_stat: stat_update() lo not found
<3>[43923.953207] tcp_get_mem_size_pst: can not get dst interface!
<3>[43923.962790] tcp_get_mem_size_pst: can not get dst interface!
<3>[43923.977196] qtaguid: iface_stat: stat_update() lo not found
<3>[43924.477333] tcp_get_mem_size_pst: can not get dst interface!
<3>[43924.486550] tcp_get_mem_size_pst: can not get dst interface!
<3>[43924.501719] qtaguid: iface_stat: stat_update() lo not found
<3>[43925.001856] tcp_get_mem_size_pst: can not get dst interface!
<3>[43925.010432] tcp_get_mem_size_pst: can not get dst interface!
<3>[43925.025357] tcp_get_mem_size_pst: can not get dst interface!
<3>[43925.032010] qtaguid: iface_stat: stat_update() lo not found
<3>[43925.041594] tcp_get_mem_size_pst: can not get dst interface!
<3>[43925.061127] qtaguid: iface_stat: stat_update() lo not found
<3>[43925.068757] tcp_get_mem_size_pst: can not get dst interface!
<3>[43925.077028] tcp_get_mem_size_pst: can not get dst interface!
<3>[43925.093112] qtaguid: iface_stat: stat_update() lo not found
<3>[43925.193463] tcp_get_mem_size_pst: can not get dst interface!
<3>[43925.195996] tcp_get_mem_size_pst: can not get dst interface!
<4>[43925.667811] send sigkill to 7317 (on.warrantytime), adj 764, size 7441
<4>[43925.667811] state:1 flag:0x400140
<6>[43928.454626] SLIM_CL: skip reconfig sequence
<3>[43930.370542] tcp_get_mem_size_pst: can not get dst interface!
<3>[43930.385650] tcp_get_mem_size_pst: can not get dst interface!
<3>[43931.382811] tcp_get_mem_size_pst: can not get dst interface!
<3>[43931.391571] tcp_get_mem_size_pst: can not get dst interface!
<3>[43931.488076] tcp_get_mem_size_pst: can not get dst interface!
<3>[43931.506114] tcp_get_mem_size_pst: can not get dst interface!
<3>[43931.520153] qtaguid: iface_stat: stat_update() lo not found
<3>[43932.020992] tcp_get_mem_size_pst: can not get dst interface!
<3>[43932.025509] tcp_get_mem_size_pst: can not get dst interface!
<3>[43932.039518] qtaguid: iface_stat: stat_update() lo not found
<6>[43934.737122] SLIM_CL: skip reconfig sequence
<3>[43935.956411] tcp_get_mem_size_pst: can not get dst interface!
<3>[43935.965720] tcp_get_mem_size_pst: can not get dst interface!
<3>[43935.981255] qtaguid: iface_stat: stat_update() lo not found
<3>[43936.488931] tcp_get_mem_size_pst: can not get dst interface!
<3>[43936.501749] tcp_get_mem_size_pst: can not get dst interface!
<3>[43937.008815] tcp_get_mem_size_pst: can not get dst interface!
<3>[43937.017208] tcp_get_mem_size_pst: can not get dst interface!
<3>[43937.032895] qtaguid: iface_stat: stat_update() lo not found
<3>[43937.035154] tcp_get_mem_size_pst: can not get dst interface!
<3>[43937.046935] tcp_get_mem_size_pst: can not get dst interface!
<3>[43937.068482] qtaguid: iface_stat: stat_update() lo not found
<3>[43940.986749] tcp_get_mem_size_pst: can not get dst interface!
<3>[43940.996485] tcp_get_mem_size_pst: can not get dst interface!
<3>[43941.013454] qtaguid: iface_stat: stat_update() lo not found
<3>[43941.513591] tcp_get_mem_size_pst: can not get dst interface!
<3>[43941.522015] tcp_get_mem_size_pst: can not get dst interface!
<3>[43941.537306] qtaguid: iface_stat: stat_update() lo not found
<3>[43942.037412] tcp_get_mem_size_pst: can not get dst interface!
<3>[43942.045958] tcp_get_mem_size_pst: can not get dst interface!
<3>[43942.061249] tcp_get_mem_size_pst: can not get dst interface!
<3>[43942.065766] qtaguid: iface_stat: stat_update() lo not found
<3>[43942.074342] tcp_get_mem_size_pst: can not get dst interface!
<3>[43942.094546] qtaguid: iface_stat: stat_update() lo not found
<3>[43946.001307] tcp_get_mem_size_pst: can not get dst interface!
<3>[43946.010219] tcp_get_mem_size_pst: can not get dst interface!
<3>[43946.024624] qtaguid: iface_stat: stat_update() lo not found
<3>[43946.524762] tcp_get_mem_size_pst: can not get dst interface!
<3>[43946.534498] tcp_get_mem_size_pst: can not get dst interface!
<3>[43946.549239] qtaguid: iface_stat: stat_update() lo not found
<3>[43947.049315] tcp_get_mem_size_pst: can not get dst interface!
<3>[43947.058532] tcp_get_mem_size_pst: can not get dst interface!
<3>[43947.074525] tcp_get_mem_size_pst: can not get dst interface!
<3>[43947.078859] qtaguid: iface_stat: stat_update() lo not found
<3>[43947.087130] tcp_get_mem_size_pst: can not get dst interface!
<3>[43947.105564] qtaguid: iface_stat: stat_update() lo not found
<3>[43951.016048] tcp_get_mem_size_pst: can not get dst interface!
<3>[43951.025326] tcp_get_mem_size_pst: can not get dst interface!
<3>[43951.040037] qtaguid: iface_stat: stat_update() lo not found
<3>[43951.540144] tcp_get_mem_size_pst: can not get dst interface!
<3>[43951.548445] tcp_get_mem_size_pst: can not get dst interface!
<3>[43951.563614] qtaguid: iface_stat: stat_update() lo not found
<3>[43952.063751] tcp_get_mem_size_pst: can not get dst interface!
<3>[43952.072267] tcp_get_mem_size_pst: can not get dst interface!
<3>[43952.087588] tcp_get_mem_size_pst: can not get dst interface!
<3>[43952.092502] qtaguid: iface_stat: stat_update() lo not found
<3>[43952.100986] tcp_get_mem_size_pst: can not get dst interface!
<3>[43952.120275] qtaguid: iface_stat: stat_update() lo not found
<3>[43956.031186] tcp_get_mem_size_pst: can not get dst interface!
<3>[43956.039915] tcp_get_mem_size_pst: can not get dst interface!
<3>[43956.055572] qtaguid: iface_stat: stat_update() lo not found
<3>[43956.555709] tcp_get_mem_size_pst: can not get dst interface!
<3>[43956.564041] tcp_get_mem_size_pst: can not get dst interface!
<3>[43956.579179] qtaguid: iface_stat: stat_update() lo not found
<3>[43957.079927] tcp_get_mem_size_pst: can not get dst interface!
<3>[43957.089053] tcp_get_mem_size_pst: can not get dst interface!
<3>[43957.105198] tcp_get_mem_size_pst: can not get dst interface!
<3>[43957.110142] qtaguid: iface_stat: stat_update() lo not found
<3>[43957.117711] tcp_get_mem_size_pst: can not get dst interface!
<3>[43957.133033] tcp_get_mem_size_pst: can not get dst interface!
<3>[43957.135841] tcp_get_mem_size_pst: can not get dst interface!
<3>[43957.243394] tcp_get_mem_size_pst: can not get dst interface!
<3>[43957.246050] tcp_get_mem_size_pst: can not get dst interface!
<4>[43958.218246] send sigkill to 15485 (rtupflagservice), adj 764, size 7237
<4>[43958.218246] state:1 flag:0x400140
<4>[43958.227737] send sigkill to 15577 (spire.mmservice), adj 705, size 10918
<4>[43958.227737] state:1 flag:0x400140
<6>[43960.516460] SLIM_CL: skip reconfig sequence
<3>[43962.409608] tcp_get_mem_size_pst: can not get dst interface!
<3>[43962.422274] tcp_get_mem_size_pst: can not get dst interface!
<3>[43963.461218] tcp_get_mem_size_pst: can not get dst interface!
<3>[43963.467414] tcp_get_mem_size_pst: can not get dst interface!
<3>[43963.491739] tcp_get_mem_size_pst: can not get dst interface!
<3>[43963.502451] tcp_get_mem_size_pst: can not get dst interface!
<3>[43963.511058] qtaguid: iface_stat: stat_update() lo not found
<3>[43964.011897] tcp_get_mem_size_pst: can not get dst interface!
<3>[43964.017116] tcp_get_mem_size_pst: can not get dst interface!
<6>[43966.722137] SLIM_CL: skip reconfig sequence
<3>[43967.963461] tcp_get_mem_size_pst: can not get dst interface!
<3>[43967.972099] tcp_get_mem_size_pst: can not get dst interface!
<3>[43967.987115] qtaguid: iface_stat: stat_update() lo not found
<3>[43968.498880] tcp_get_mem_size_pst: can not get dst interface!
<3>[43968.513988] tcp_get_mem_size_pst: can not get dst interface!
<3>[43968.541426] qtaguid: iface_stat: stat_update() lo not found
<3>[43969.042601] tcp_get_mem_size_pst: can not get dst interface!
<3>[43969.051024] tcp_get_mem_size_pst: can not get dst interface!
<3>[43969.066529] tcp_get_mem_size_pst: can not get dst interface!
<3>[43969.070802] qtaguid: iface_stat: stat_update() lo not found
<3>[43969.079195] tcp_get_mem_size_pst: can not get dst interface!
<3>[43973.013149] tcp_get_mem_size_pst: can not get dst interface!
<3>[43973.021847] tcp_get_mem_size_pst: can not get dst interface!
<3>[43973.036985] qtaguid: iface_stat: stat_update() lo not found
<3>[43973.535963] tcp_get_mem_size_pst: can not get dst interface!
<3>[43973.546553] tcp_get_mem_size_pst: can not get dst interface!
<3>[43973.562088] qtaguid: iface_stat: stat_update() lo not found
<3>[43974.062134] tcp_get_mem_size_pst: can not get dst interface!
<3>[43974.072297] tcp_get_mem_size_pst: can not get dst interface!
<3>[43974.089022] tcp_get_mem_size_pst: can not get dst interface!
<3>[43974.093265] qtaguid: iface_stat: stat_update() lo not found
<3>[43974.102085] tcp_get_mem_size_pst: can not get dst interface!
<3>[43974.121893] qtaguid: iface_stat: stat_update() lo not found
<3>[43978.026059] tcp_get_mem_size_pst: can not get dst interface!
<3>[43978.035642] tcp_get_mem_size_pst: can not get dst interface!
<3>[43978.050445] qtaguid: iface_stat: stat_update() lo not found
<3>[43978.550429] tcp_get_mem_size_pst: can not get dst interface!
<3>[43978.558853] tcp_get_mem_size_pst: can not get dst interface!
<3>[43978.574418] qtaguid: iface_stat: stat_update() lo not found
<3>[43979.074464] tcp_get_mem_size_pst: can not get dst interface!
<3>[43979.083162] tcp_get_mem_size_pst: can not get dst interface!
<3>[43979.098514] tcp_get_mem_size_pst: can not get dst interface!
<3>[43979.104252] qtaguid: iface_stat: stat_update() lo not found
<3>[43979.112889] tcp_get_mem_size_pst: can not get dst interface!
<3>[43979.132514] qtaguid: iface_stat: stat_update() lo not found
<3>[43983.040342] tcp_get_mem_size_pst: can not get dst interface!
<3>[43983.049163] tcp_get_mem_size_pst: can not get dst interface!
<3>[43983.064545] qtaguid: iface_stat: stat_update() lo not found
<3>[43983.564530] tcp_get_mem_size_pst: can not get dst interface!
<3>[43983.572984] tcp_get_mem_size_pst: can not get dst interface!
<3>[43983.588183] qtaguid: iface_stat: stat_update() lo not found
<3>[43984.088778] tcp_get_mem_size_pst: can not get dst interface!
<3>[43984.100589] tcp_get_mem_size_pst: can not get dst interface!
<3>[43984.115667] tcp_get_mem_size_pst: can not get dst interface!
<3>[43984.121588] qtaguid: iface_stat: stat_update() lo not found
<3>[43984.130042] tcp_get_mem_size_pst: can not get dst interface!
<3>[43988.054962] tcp_get_mem_size_pst: can not get dst interface!
<3>[43988.063599] tcp_get_mem_size_pst: can not get dst interface!
<3>[43988.079134] qtaguid: iface_stat: stat_update() lo not found
<3>[43988.579027] tcp_get_mem_size_pst: can not get dst interface!
<3>[43988.588854] tcp_get_mem_size_pst: can not get dst interface!
<3>[43988.603657] qtaguid: iface_stat: stat_update() lo not found
<3>[43989.103672] tcp_get_mem_size_pst: can not get dst interface!
<3>[43989.112370] tcp_get_mem_size_pst: can not get dst interface!
<3>[43989.129492] qtaguid: iface_stat: stat_update() lo not found
<3>[43989.132972] tcp_get_mem_size_pst: can not get dst interface!
<3>[43989.141517] tcp_get_mem_size_pst: can not get dst interface!
<3>[43989.161447] tcp_get_mem_size_pst: can not get dst interface!
<3>[43989.168803] qtaguid: iface_stat: stat_update() lo not found
<3>[43989.176585] tcp_get_mem_size_pst: can not get dst interface!
<3>[43989.286092] tcp_get_mem_size_pst: can not get dst interface!
<3>[43989.298941] tcp_get_mem_size_pst: can not get dst interface!
<6>[43992.558639] SLIM_CL: skip reconfig sequence
<3>[43994.488961] tcp_get_mem_size_pst: can not get dst interface!
<3>[43994.521435] tcp_get_mem_size_pst: can not get dst interface!
<3>[43995.465094] tcp_get_mem_size_pst: can not get dst interface!
<3>[43995.474128] tcp_get_mem_size_pst: can not get dst interface!
<3>[43995.529340] tcp_get_mem_size_pst: can not get dst interface!
<3>[43995.533735] tcp_get_mem_size_pst: can not get dst interface!
<3>[43996.051910] tcp_get_mem_size_pst: can not get dst interface!
<3>[43996.056488] tcp_get_mem_size_pst: can not get dst interface!
<6>[43998.771580] SLIM_CL: skip reconfig sequence
<3>[43999.986016] tcp_get_mem_size_pst: can not get dst interface!
<3>[43999.995569] tcp_get_mem_size_pst: can not get dst interface!
<3>[44000.030118] qtaguid: iface_stat: stat_update() lo not found
<3>[44000.530866] tcp_get_mem_size_pst: can not get dst interface!
<3>[44000.539503] tcp_get_mem_size_pst: can not get dst interface!
<3>[44000.565506] qtaguid: iface_stat: stat_update() lo not found
<3>[44001.065613] tcp_get_mem_size_pst: can not get dst interface!
<3>[44001.074952] tcp_get_mem_size_pst: can not get dst interface!
<3>[44001.089724] qtaguid: iface_stat: stat_update() lo not found
<3>[44001.092685] tcp_get_mem_size_pst: can not get dst interface!
<3>[44001.103214] tcp_get_mem_size_pst: can not get dst interface!
<3>[44001.121099] qtaguid: iface_stat: stat_update() lo not found
<3>[44005.040068] tcp_get_mem_size_pst: can not get dst interface!
<3>[44005.049743] tcp_get_mem_size_pst: can not get dst interface!
<3>[44005.063843] qtaguid: iface_stat: stat_update() lo not found
<3>[44005.563889] tcp_get_mem_size_pst: can not get dst interface!
<3>[44005.573960] tcp_get_mem_size_pst: can not get dst interface!
<3>[44005.589526] qtaguid: iface_stat: stat_update() lo not found
<3>[44006.089572] tcp_get_mem_size_pst: can not get dst interface!
<3>[44006.098545] tcp_get_mem_size_pst: can not get dst interface!
<3>[44006.114537] tcp_get_mem_size_pst: can not get dst interface!
<3>[44006.119756] qtaguid: iface_stat: stat_update() lo not found
<3>[44006.127478] tcp_get_mem_size_pst: can not get dst interface!
<3>[44006.147103] qtaguid: iface_stat: stat_update() lo not found
<3>[44010.068635] tcp_get_mem_size_pst: can not get dst interface!
<3>[44010.077272] tcp_get_mem_size_pst: can not get dst interface!
<3>[44010.092563] qtaguid: iface_stat: stat_update() lo not found
<3>[44010.592547] tcp_get_mem_size_pst: can not get dst interface!
<3>[44010.601246] tcp_get_mem_size_pst: can not get dst interface!
<3>[44010.616689] qtaguid: iface_stat: stat_update() lo not found
<3>[44011.116643] tcp_get_mem_size_pst: can not get dst interface!
<3>[44011.125342] tcp_get_mem_size_pst: can not get dst interface!
<3>[44011.140968] qtaguid: iface_stat: stat_update() lo not found
<3>[44011.144447] tcp_get_mem_size_pst: can not get dst interface!
<3>[44011.153634] tcp_get_mem_size_pst: can not get dst interface!
<3>[44011.174174] qtaguid: iface_stat: stat_update() lo not found
<3>[44015.085116] tcp_get_mem_size_pst: can not get dst interface!
<3>[44015.093844] tcp_get_mem_size_pst: can not get dst interface!
<3>[44015.109807] qtaguid: iface_stat: stat_update() lo not found
<3>[44015.608906] tcp_get_mem_size_pst: can not get dst interface!
<3>[44015.617391] tcp_get_mem_size_pst: can not get dst interface!
<3>[44015.631797] qtaguid: iface_stat: stat_update() lo not found
<3>[44016.170054] tcp_get_mem_size_pst: can not get dst interface!
<3>[44016.182293] tcp_get_mem_size_pst: can not get dst interface!
<3>[44016.187420] tcp_get_mem_size_pst: can not get dst interface!
<3>[44016.190747] tcp_get_mem_size_pst: can not get dst interface!
<3>[44020.113469] tcp_get_mem_size_pst: can not get dst interface!
<3>[44020.122015] tcp_get_mem_size_pst: can not get dst interface!
<3>[44020.136665] qtaguid: iface_stat: stat_update() lo not found
<3>[44020.636771] tcp_get_mem_size_pst: can not get dst interface!
<3>[44020.646843] tcp_get_mem_size_pst: can not get dst interface!
<3>[44020.661127] qtaguid: iface_stat: stat_update() lo not found
<3>[44021.161295] tcp_get_mem_size_pst: can not get dst interface!
<3>[44021.171488] tcp_get_mem_size_pst: can not get dst interface!
<3>[44021.188427] tcp_get_mem_size_pst: can not get dst interface!
<3>[44021.192914] qtaguid: iface_stat: stat_update() lo not found
<3>[44021.201459] tcp_get_mem_size_pst: can not get dst interface!
<3>[44021.221908] qtaguid: iface_stat: stat_update() lo not found
<3>[44021.222335] tcp_get_mem_size_pst: can not get dst interface!
<3>[44021.225631] tcp_get_mem_size_pst: can not get dst interface!
<3>[44021.332239] tcp_get_mem_size_pst: can not get dst interface!
<3>[44021.334864] tcp_get_mem_size_pst: can not get dst interface!
<4>[44021.506205] send sigkill to 19990 (ndroid.camera3d), adj 764, size 8065
<4>[44021.506327] state:2 flag:0x400140
<4>[44021.519146] terminate loop for 19990 (ndroid.camera3d) old:19469 -487151 3
<4>[44021.519268] state:2 flag:0x400140
<6>[44021.883010] msm_enqueue: queue eventdata new max is 1
<6>[44021.926837] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[44021.927570] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<6>[44021.949514] msm_enqueue: queue control new max is 1
<6>[44022.034269] vfe32_proc_general: cmdID = RESET
<6>[44022.035703] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40
<6>[44022.053283] configure_pingpong_buffers Configure ping/pong address for 25
<6>[44022.053436] vfe32_proc_general: cmdID = START
<6>[44022.707853] msm_rotator msm_rotator: scale: 0, rot: 4, src: 1280x720, dst: 720x1280, s_dst: 720x1280, sfmt: 6, dfmt: 6 => fyuv: 1, pl: 3
<6>[44022.738862] mdp4_overlay_mdp_perf_upd mdp clk is changed [1] from 85330000 to 96000000
<6>[44022.770573] mdp4_overlay_mdp_perf_upd mdp clk is changed [0] from 96000000 to 85330000
<4>[44022.848278] send sigkill to 20106 (socialphonebook), adj 764, size 14057
<4>[44022.848400] state:1 flag:0x400140
<6>[44023.128363] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<6>[44024.559311] vfe32_proc_general: cmdID = STOP
<6>[44024.589617] SLIM_CL: skip reconfig sequence
<6>[44024.603840] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[44024.607502] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<3>[44024.866559] msm_release_ion_client Calling ion_client_destroy
<6>[44026.008387] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<3>[44026.486245] tcp_get_mem_size_pst: can not get dst interface!
<3>[44026.499155] tcp_get_mem_size_pst: can not get dst interface!
<3>[44027.490121] tcp_get_mem_size_pst: can not get dst interface!
<3>[44027.498209] tcp_get_mem_size_pst: can not get dst interface!
<3>[44027.565720] tcp_get_mem_size_pst: can not get dst interface!
<3>[44027.574144] tcp_get_mem_size_pst: can not get dst interface!
<3>[44028.091220] tcp_get_mem_size_pst: can not get dst interface!
<3>[44028.098575] tcp_get_mem_size_pst: can not get dst interface!
<6>[44030.814430] SLIM_CL: skip reconfig sequence
<3>[44032.036832] tcp_get_mem_size_pst: can not get dst interface!
<3>[44032.044371] tcp_get_mem_size_pst: can not get dst interface!
<3>[44032.558792] tcp_get_mem_size_pst: can not get dst interface!
<3>[44032.567338] tcp_get_mem_size_pst: can not get dst interface!
<3>[44032.606343] qtaguid: iface_stat: stat_update() lo not found
<3>[44033.100284] tcp_get_mem_size_pst: can not get dst interface!
<3>[44033.109562] tcp_get_mem_size_pst: can not get dst interface!
<3>[44033.125219] tcp_get_mem_size_pst: can not get dst interface!
<3>[44033.130225] qtaguid: iface_stat: stat_update() lo not found
<3>[44033.137855] tcp_get_mem_size_pst: can not get dst interface!
<3>[44033.156472] qtaguid: iface_stat: stat_update() lo not found
<3>[44037.081636] tcp_get_mem_size_pst: can not get dst interface!
<3>[44037.090335] tcp_get_mem_size_pst: can not get dst interface!
<3>[44037.106327] qtaguid: iface_stat: stat_update() lo not found
<3>[44037.606373] tcp_get_mem_size_pst: can not get dst interface!
<3>[44037.615468] tcp_get_mem_size_pst: can not get dst interface!
<3>[44037.630789] qtaguid: iface_stat: stat_update() lo not found
<3>[44038.130683] tcp_get_mem_size_pst: can not get dst interface!
<3>[44038.139381] tcp_get_mem_size_pst: can not get dst interface!
<3>[44038.155251] tcp_get_mem_size_pst: can not get dst interface!
<3>[44038.160379] qtaguid: iface_stat: stat_update() lo not found
<3>[44038.168314] tcp_get_mem_size_pst: can not get dst interface!
<3>[44038.188030] qtaguid: iface_stat: stat_update() lo not found
<3>[44042.109624] tcp_get_mem_size_pst: can not get dst interface!
<3>[44042.119115] tcp_get_mem_size_pst: can not get dst interface!
<3>[44042.133948] qtaguid: iface_stat: stat_update() lo not found
<3>[44042.633964] tcp_get_mem_size_pst: can not get dst interface!
<3>[44042.643272] tcp_get_mem_size_pst: can not get dst interface!
<3>[44042.658960] qtaguid: iface_stat: stat_update() lo not found
<3>[44043.158822] tcp_get_mem_size_pst: can not get dst interface!
<3>[44043.167795] tcp_get_mem_size_pst: can not get dst interface!
<3>[44043.184368] tcp_get_mem_size_pst: can not get dst interface!
<3>[44043.189556] qtaguid: iface_stat: stat_update() lo not found
<3>[44043.197278] tcp_get_mem_size_pst: can not get dst interface!
<3>[44043.215987] qtaguid: iface_stat: stat_update() lo not found
<3>[44047.139961] tcp_get_mem_size_pst: can not get dst interface!
<3>[44047.149483] tcp_get_mem_size_pst: can not get dst interface!
<3>[44047.163919] qtaguid: iface_stat: stat_update() lo not found
<3>[44047.663904] tcp_get_mem_size_pst: can not get dst interface!
<3>[44047.672480] tcp_get_mem_size_pst: can not get dst interface!
<3>[44047.689358] qtaguid: iface_stat: stat_update() lo not found
<3>[44048.189282] tcp_get_mem_size_pst: can not get dst interface!
<3>[44048.198011] tcp_get_mem_size_pst: can not get dst interface!
<3>[44048.213149] tcp_get_mem_size_pst: can not get dst interface!
<3>[44048.219100] qtaguid: iface_stat: stat_update() lo not found
<3>[44048.226974] tcp_get_mem_size_pst: can not get dst interface!
<3>[44048.248094] qtaguid: iface_stat: stat_update() lo not found
<3>[44052.171061] tcp_get_mem_size_pst: can not get dst interface!
<3>[44052.180614] tcp_get_mem_size_pst: can not get dst interface!
<3>[44052.195325] qtaguid: iface_stat: stat_update() lo not found
<3>[44052.695340] tcp_get_mem_size_pst: can not get dst interface!
<3>[44052.705839] tcp_get_mem_size_pst: can not get dst interface!
<3>[44052.720550] qtaguid: iface_stat: stat_update() lo not found
<3>[44053.220504] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.229935] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.245317] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.250475] qtaguid: iface_stat: stat_update() lo not found
<3>[44053.259662] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.284658] qtaguid: iface_stat: stat_update() lo not found
<3>[44053.286092] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.294821] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.405000] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.407716] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.567856] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.576402] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.588549] qtaguid: iface_stat: stat_update() lo not found
<3>[44053.590319] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.634604] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.643089] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.669489] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.673152] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.678279] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.680629] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.683315] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.685635] tcp_get_mem_size_pst: can not get dst interface!
<3>[44053.688442] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.226608] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.238267] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.242570] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.259845] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.368803] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.371305] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.374785] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.377043] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.529614] tcp_get_mem_size_pst: can not get dst interface!
<3>[44054.532666] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.525616] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.528271] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.532392] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.534589] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.537763] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.539991] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.543349] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.545515] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.548812] tcp_get_mem_size_pst: can not get dst interface!
<3>[44055.551040] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.512584] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.523724] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.537550] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.549544] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.563370] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.572282] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.576066] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.579088] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.583330] tcp_get_mem_size_pst: can not get dst interface!
<3>[44056.586108] tcp_get_mem_size_pst: can not get dst interface!
<6>[44056.681423] SLIM_CL: skip reconfig sequence
<3>[44058.531049] tcp_get_mem_size_pst: can not get dst interface!
<3>[44058.542128] tcp_get_mem_size_pst: can not get dst interface!
<3>[44059.576158] tcp_get_mem_size_pst: can not get dst interface!
<3>[44059.586504] tcp_get_mem_size_pst: can not get dst interface!
<3>[44059.603352] tcp_get_mem_size_pst: can not get dst interface!
<3>[44059.616384] tcp_get_mem_size_pst: can not get dst interface!
<3>[44059.631034] qtaguid: iface_stat: stat_update() lo not found
<3>[44060.633933] tcp_get_mem_size_pst: can not get dst interface!
<3>[44060.644798] tcp_get_mem_size_pst: can not get dst interface!
<3>[44060.664240] qtaguid: iface_stat: stat_update() lo not found
<3>[44061.163675] tcp_get_mem_size_pst: can not get dst interface!
<3>[44061.173991] tcp_get_mem_size_pst: can not get dst interface!
<3>[44061.192334] qtaguid: iface_stat: stat_update() lo not found
<3>[44061.691800] tcp_get_mem_size_pst: can not get dst interface!
<3>[44061.702421] tcp_get_mem_size_pst: can not get dst interface!
<3>[44061.721252] qtaguid: iface_stat: stat_update() lo not found
<6>[44061.801734] SLIM_CL: skip reconfig sequence
<3>[44062.220657] tcp_get_mem_size_pst: can not get dst interface!
<3>[44062.229202] tcp_get_mem_size_pst: can not get dst interface!
<3>[44062.246568] tcp_get_mem_size_pst: can not get dst interface!
<3>[44062.255511] qtaguid: iface_stat: stat_update() lo not found
<3>[44062.261737] tcp_get_mem_size_pst: can not get dst interface!
<3>[44062.287222] qtaguid: iface_stat: stat_update() lo not found
<3>[44065.999628] tcp_get_mem_size_pst: can not get dst interface!
<3>[44066.008387] tcp_get_mem_size_pst: can not get dst interface!
<3>[44066.026547] tcp_get_mem_size_pst: can not get dst interface!
<3>[44066.039915] tcp_get_mem_size_pst: can not get dst interface!
<3>[44066.053313] tcp_get_mem_size_pst: can not get dst interface!
<3>[44066.055816] tcp_get_mem_size_pst: can not get dst interface!
<3>[44066.162759] tcp_get_mem_size_pst: can not get dst interface!
<3>[44066.165293] tcp_get_mem_size_pst: can not get dst interface!
<3>[44068.176249] tcp_get_mem_size_pst: can not get dst interface!
<3>[44068.188213] tcp_get_mem_size_pst: can not get dst interface!
<3>[44068.705107] tcp_get_mem_size_pst: can not get dst interface!
<3>[44068.730591] tcp_get_mem_size_pst: can not get dst interface!
<3>[44069.253252] tcp_get_mem_size_pst: can not get dst interface!
<3>[44069.265003] tcp_get_mem_size_pst: can not get dst interface!
<6>[44069.488229] SLIM_CL: skip reconfig sequence
<3>[44069.780675] tcp_get_mem_size_pst: can not get dst interface!
<3>[44069.792090] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.304618] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.316887] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.331995] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.346980] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.361172] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.364743] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.871839] tcp_get_mem_size_pst: can not get dst interface!
<3>[44070.883925] tcp_get_mem_size_pst: can not get dst interface!
<3>[44071.399353] tcp_get_mem_size_pst: can not get dst interface!
<3>[44071.402283] tcp_get_mem_size_pst: can not get dst interface!
<3>[44071.406373] tcp_get_mem_size_pst: can not get dst interface!
<3>[44071.410249] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.065674] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.078462] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.111333] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.121801] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.228226] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.231430] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.241410] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.250811] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.755282] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.757327] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.760135] qtaguid: iface_stat: stat_update() lo not found
<3>[44077.762943] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.768436] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.771794] qtaguid: iface_stat: stat_update() lo not found
<3>[44077.873060] tcp_get_mem_size_pst: can not get dst interface!
<3>[44077.877363] tcp_get_mem_size_pst: can not get dst interface!
<6>[44077.972038] sps:BAM 0x124c2000 enabled: ver:0x5, number of pipes:6
<3>[44079.391235] tcp_get_mem_size_pst: can not get dst interface!
<3>[44079.393768] tcp_get_mem_size_pst: can not get dst interface!
<3>[44079.899735] tcp_get_mem_size_pst: can not get dst interface!
<3>[44079.913378] tcp_get_mem_size_pst: can not get dst interface!
<3>[44080.430515] tcp_get_mem_size_pst: can not get dst interface!
<3>[44080.441349] tcp_get_mem_size_pst: can not get dst interface!
<3>[44080.455450] tcp_get_mem_size_pst: can not get dst interface!
<3>[44080.468604] tcp_get_mem_size_pst: can not get dst interface!
<6>[44081.039305] SLIM_CL: skip reconfig sequence
<6>[44081.964316] qtaguid: ctrl_tag(t 145 43112881717248 796158305): insufficient priv from pid=8770 tgid=8724 uid=10038
<6>[44081.965598] qtaguid: ctrl_tag(t 146 43112881717248 796158305): insufficient priv from pid=8770 tgid=8724 uid=10038
<6>[44081.966666] qtaguid: ctrl_tag(t 153 43112881717248 796158305): insufficient priv from pid=8770 tgid=8724 uid=10038
<3>[44083.496835] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.507182] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.532697] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.554427] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.564377] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.566910] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.571427] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.574540] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.580126] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.582720] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.587145] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.589678] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.724334] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.756961] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.768589] qtaguid: iface_stat: stat_update() lo not found
<3>[44083.772160] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.811012] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.833262] qtaguid: iface_stat: stat_update() lo not found
<3>[44083.937580] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.939869] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.943318] tcp_get_mem_size_pst: can not get dst interface!
<3>[44083.945668] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.114232] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.117956] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.124273] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.127295] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.133704] qtaguid: iface_stat: stat_update() lo not found
<3>[44084.133948] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.137397] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.141700] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.144936] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.153878] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.159555] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.164438] tcp_get_mem_size_pst: can not get dst interface!
<3>[44084.167948] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.173045] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.178294] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.184459] qtaguid: iface_stat: stat_update() lo not found
<3>[44085.184734] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.187603] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.192181] qtaguid: iface_stat: stat_update() lo not found
<3>[44085.193402] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.196546] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.200879] qtaguid: iface_stat: stat_update() lo not found
<3>[44085.201154] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.204847] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.210585] qtaguid: iface_stat: stat_update() lo not found
<3>[44085.211134] tcp_get_mem_size_pst: can not get dst interface!
<3>[44085.214217] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.155862] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.166483] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.179393] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.190594] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.205366] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.217269] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.230179] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.233445] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.236924] tcp_get_mem_size_pst: can not get dst interface!
<3>[44086.239579] tcp_get_mem_size_pst: can not get dst interface!
<3>[44088.182079] tcp_get_mem_size_pst: can not get dst interface!
<3>[44088.193799] tcp_get_mem_size_pst: can not get dst interface!
<3>[44089.232193] tcp_get_mem_size_pst: can not get dst interface!
<3>[44089.243425] tcp_get_mem_size_pst: can not get dst interface!
<3>[44089.260913] tcp_get_mem_size_pst: can not get dst interface!
<3>[44089.275197] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.295615] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.308586] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.338038] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.348415] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.372648] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.381835] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.487588] tcp_get_mem_size_pst: can not get dst interface!
<3>[44090.490670] tcp_get_mem_size_pst: can not get dst interface!
<6>[44092.043120] msm_enqueue: queue eventdata new max is 1
<6>[44092.108097] msm_enqueue: queue control new max is 1
<6>[44092.121313] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[44092.122198] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<6>[44092.197492] vfe32_proc_general: cmdID = RESET
<6>[44092.198896] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40
<6>[44092.218490] configure_pingpong_buffers Configure ping/pong address for 25
<6>[44092.219192] vfe32_proc_general: cmdID = START
<6>[44092.693600] msm_rotator msm_rotator: scale: 0, rot: 4, src: 1280x720, dst: 720x1280, s_dst: 720x1280, sfmt: 6, dfmt: 6 => fyuv: 1, pl: 3
<4>[44092.772373] send sigkill to 20225 (ndroid.settings), adj 764, size 12671
<4>[44092.772465] state:1 flag:0x400140
<4>[44092.779027] terminate loop for 20225 (ndroid.settings) old:19990 -493439 1
<4>[44092.779149] state:0 flag:0x400140
<4>[44092.782201] terminate loop for 20225 (ndroid.settings) old:19990 -490265 2
<4>[44092.782262] state:0 flag:0x400140
<6>[44093.704008] SLIM_CL: skip reconfig sequence
<6>[44094.008906] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<3>[44102.503092] tcp_get_mem_size_pst: can not get dst interface!
<3>[44102.506175] tcp_get_mem_size_pst: can not get dst interface!
<6>[44106.856274] qtaguid: ctrl_tag(t 147 43112881717248 1869308773): insufficient priv from pid=8770 tgid=8724 uid=10038
<6>[44106.856579] qtaguid: ctrl_tag(t 148 43112881717248 1869308773): insufficient priv from pid=8770 tgid=8724 uid=10038
<6>[44106.856884] qtaguid: ctrl_tag(t 149 43112881717248 1869308773): insufficient priv from pid=8770 tgid=8724 uid=10038
<6>[44113.829965] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[44113.832071] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<6>[44116.014583] vfe32_proc_general: cmdID = STOP
<6>[44116.038419] vfe32_proc_general: cmdID = RESET
<6>[44116.039518] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x4
<6>[44116.086092] configure_pingpong_buffers Configure ping/pong address for 25
<6>[44116.086245] configure_pingpong_buffers Configure ping/pong address for 26
<6>[44116.395691] vfe32_proc_general: cmdID = STOP
<6>[44116.805335] vfe32_proc_general: cmdID = RESET
<6>[44116.806831] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40
<6>[44116.859509] configure_pingpong_buffers Configure ping/pong address for 25
<6>[44116.862103] vfe32_proc_general: cmdID = START
<6>[44118.008448] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<6>[44120.630026] SLIM_CL: skip reconfig sequence
<6>[44121.645683] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[44121.646507] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<6>[44123.782048] vfe32_proc_general: cmdID = STOP
<6>[44123.803596] vfe32_proc_general: cmdID = RESET
<6>[44123.804511] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x4
<6>[44123.852276] configure_pingpong_buffers Configure ping/pong address for 25
<6>[44123.852428] configure_pingpong_buffers Configure ping/pong address for 26
<6>[44124.098850] vfe32_proc_general: cmdID = STOP
<6>[44124.475837] vfe32_proc_general: cmdID = RESET
<6>[44124.477180] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40
<6>[44124.525036] configure_pingpong_buffers Configure ping/pong address for 25
<6>[44124.531446] vfe32_proc_general: cmdID = START
<6>[44126.008021] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<6>[44128.048980] SLIM_CL: skip reconfig sequence
<3>[44129.673426] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.683437] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.718688] qtaguid: iface_stat: stat_update() lo not found
<3>[44129.720794] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.732331] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.745790] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.748354] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.754336] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.757205] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.762515] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.765079] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.772160] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.775059] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.925250] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.934437] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.938893] qtaguid: iface_stat: stat_update() lo not found
<3>[44129.939198] tcp_get_mem_size_pst: can not get dst interface!
<3>[44129.942372] tcp_get_mem_size_pst: can not get dst interface!
<6>[44130.028043] vfe32_proc_general: cmdID = STOP
<6>[44130.062408] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip.
<6>[44130.063935] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver.
<3>[44130.375334] msm_release_ion_client Calling ion_client_destroy
<3>[44130.643761] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.660852] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.667658] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.671168] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.787298] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.789404] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.794195] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.799323] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.805702] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.807502] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.811867] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.817666] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.821603] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.823464] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.825815] qtaguid: iface_stat: stat_update() lo not found
<3>[44130.826425] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.830515] tcp_get_mem_size_pst: can not get dst interface!
<3>[44130.835245] qtaguid: iface_stat: stat_update() lo not found
<6>[44132.008967] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver.
<3>[44132.764072] tcp_get_mem_size_pst: can not get dst interface!
<3>[44132.766575] tcp_get_mem_size_pst: can not get dst interface!
<3>[44133.777898] tcp_get_mem_size_pst: can not get dst interface!
<3>[44133.788030] tcp_get_mem_size_pst: can not get dst interface!
<3>[44133.803291] qtaguid: iface_stat: stat_update() lo not found
<3>[44133.805976] tcp_get_mem_size_pst: can not get dst interface!
<3>[44133.818856] tcp_get_mem_size_pst: can not get dst interface!
<3>[44133.837351] qtaguid: iface_stat: stat_update() lo not found
<3>[44134.837016] tcp_get_mem_size_pst: can not get dst interface!
<3>[44134.846935] tcp_get_mem_size_pst: can not get dst interface!
<3>[44134.871656] tcp_get_mem_size_pst: can not get dst interface!
<3>[44134.880934] tcp_get_mem_size_pst: can not get dst interface!
<3>[44134.893783] tcp_get_mem_size_pst: can not get dst interface!
<3>[44134.896530] tcp_get_mem_size_pst: can not get dst interface!
<3>[44135.003260] tcp_get_mem_size_pst: can not get dst interface!
<3>[44135.005915] tcp_get_mem_size_pst: can not get dst interface!
<6>[44138.224716] SLIM_CL: skip reconfig sequence
<3>[44140.400330] tcp_get_mem_size_pst: can not get dst interface!
<3>[44140.418886] tcp_get_mem_size_pst: can not get dst interface!
<3>[44140.451909] qtaguid: iface_stat: stat_update() lo not found
<3>[44140.551833] tcp_get_mem_size_pst: can not get dst interface!
<3>[44140.554580] tcp_get_mem_size_pst: can not get dst interface!
<6>[44141.488137] sps:BAM 0x124c2000 enabled: ver:0x5, number of pipes:6
<3>[44142.571030] tcp_get_mem_size_pst: can not get dst interface!
<3>[44142.582598] tcp_get_mem_size_pst: can not get dst interface!
<3>[44142.614766] qtaguid: iface_stat: stat_update() lo not found
<3>[44143.113133] tcp_get_mem_size_pst: can not get dst interface!
<3>[44143.116002] tcp_get_mem_size_pst: can not get dst interface!
<3>[44143.623342] tcp_get_mem_size_pst: can not get dst interface!
<3>[44143.632437] tcp_get_mem_size_pst: can not get dst interface!
<3>[44143.651757] qtaguid: iface_stat: stat_update() lo not found
<6>[44143.705503] SLIM_CL: skip reconfig sequence
<3>[44144.152718] tcp_get_mem_size_pst: can not get dst interface!
<3>[44144.161508] tcp_get_mem_size_pst: can not get dst interface!
<3>[44144.179271] qtaguid: iface_stat: stat_update() lo not found
<3>[44144.678340] tcp_get_mem_size_pst: can not get dst interface!
<3>[44144.681240] tcp_get_mem_size_pst: can not get dst interface!
<3>[44145.188763] tcp_get_mem_size_pst: can not get dst interface!
<3>[44145.197309] tcp_get_mem_size_pst: can not get dst interface!
<3>[44145.213118] qtaguid: iface_stat: stat_update() lo not found
<3>[44145.712981] tcp_get_mem_size_pst: can not get dst interface!
<3>[44145.725464] tcp_get_mem_size_pst: can not get dst interface!
<3>[44145.741823] qtaguid: iface_stat: stat_update() lo not found
<3>[44146.243944] tcp_get_mem_size_pst: can not get dst interface!
<3>[44146.252459] tcp_get_mem_size_pst: can not get dst interface!
<3>[44146.269703] qtaguid: iface_stat: stat_update() lo not found
<3>[44146.768284] tcp_get_mem_size_pst: can not get dst interface!
<3>[44146.770786] tcp_get_mem_size_pst: can not get dst interface!
<3>[44147.285757] tcp_get_mem_size_pst: can not get dst interface!
<3>[44147.300101] tcp_get_mem_size_pst: can not get dst interface!
<3>[44147.316704] qtaguid: iface_stat: stat_update() lo not found
<3>[44147.816842] tcp_get_mem_size_pst: can not get dst interface!
<3>[44147.835581] tcp_get_mem_size_pst: can not get dst interface!
<3>[44147.853222] qtaguid: iface_stat: stat_update() lo not found
<3>[44148.360013] tcp_get_mem_size_pst: can not get dst interface!
<3>[44148.369138] tcp_get_mem_size_pst: can not get dst interface!
<3>[44148.388366] qtaguid: iface_stat: stat_update() lo not found
<3>[44148.887222] tcp_get_mem_size_pst: can not get dst interface!
<3>[44148.890182] tcp_get_mem_size_pst: can not get dst interface!
<3>[44149.409395] tcp_get_mem_size_pst: can not get dst interface!
<3>[44149.422763] tcp_get_mem_size_pst: can not get dst interface!
<3>[44149.932392] tcp_get_mem_size_pst: can not get dst interface!
<3>[44149.941670] tcp_get_mem_size_pst: can not get dst interface!
<3>[44149.959005] qtaguid: iface_stat: stat_update() lo not found
<3>[44150.459509] tcp_get_mem_size_pst: can not get dst interface!
<3>[44150.467689] tcp_get_mem_size_pst: can not get dst interface!
<3>[44150.483254] qtaguid: iface_stat: stat_update() lo not found
<3>[44150.989495] tcp_get_mem_size_pst: can not get dst interface!
<3>[44150.998133] tcp_get_mem_size_pst: can not get dst interface!
<3>[44151.014369] tcp_get_mem_size_pst: can not get dst interface!
<3>[44151.017055] qtaguid: iface_stat: stat_update() lo not found
<3>[44151.026730] tcp_get_mem_size_pst: can not get dst interface!
<3>[44154.199567] tcp_get_mem_size_pst: can not get dst interface!
<3>[44154.202222] tcp_get_mem_size_pst: can not get dst interface!
<3>[44155.562119] tcp_get_mem_size_pst: can not get dst interface!
<3>[44155.572373] tcp_get_mem_size_pst: can not get dst interface!
<3>[44155.682247] tcp_get_mem_size_pst: can not get dst interface!
<3>[44155.688168] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.864575] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.877058] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.893112] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.905106] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.924060] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.932300] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.937275] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.940419] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.945912] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.948659] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.953603] tcp_get_mem_size_pst: can not get dst interface!
<3>[44157.956320] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.083132] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.105473] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.121526] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.158426] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.170237] qtaguid: iface_stat: stat_update() lo not found
<3>[44158.283315] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.287344] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.295340] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.301322] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.459509] tcp_get_mem_size_pst: can not get dst interface!
<3>[44158.462317] tcp_get_mem_size_pst: can not get dst interface!
<6>[44158.954824] SLIM_CL: skip reconfig sequence
<3>[44160.403504] tcp_get_mem_size_pst: can not get dst interface!
<3>[44160.410676] tcp_get_mem_size_pst: can not get dst interface!
<3>[44161.437534] tcp_get_mem_size_pst: can not get dst interface!
<3>[44161.470466] tcp_get_mem_size_pst: can not get dst interface!
<3>[44161.486825] tcp_get_mem_size_pst: can not get dst interface!
<3>[44161.500528] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.513835] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.523327] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.550734] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.560135] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.581468] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.585406] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.690365] tcp_get_mem_size_pst: can not get dst interface!
<3>[44162.694821] tcp_get_mem_size_pst: can not get dst interface!
<4>[44164.518444] send sigkill to 21771 (sson.tvlauncher), adj 764, size 7334
<4>[44164.518566] state:1 flag:0x400140
<3>[44164.705473] tcp_get_mem_size_pst: can not get dst interface!
<3>[44164.707426] tcp_get_mem_size_pst: can not get dst interface!
<3>[44165.218398] tcp_get_mem_size_pst: can not get dst interface!
<3>[44165.225509] tcp_get_mem_size_pst: can not get dst interface!
<3>[44165.252001] qtaguid: iface_stat: stat_update() lo not found
<3>[44165.754061] tcp_get_mem_size_pst: can not get dst interface!
<3>[44165.763339] tcp_get_mem_size_pst: can not get dst interface!
<3>[44165.803413] qtaguid: iface_stat: stat_update() lo not found
<6>[44165.896134] SLIM_CL: skip reconfig sequence
<3>[44166.302115] tcp_get_mem_size_pst: can not get dst interface!
<3>[44166.304740] tcp_get_mem_size_pst: can not get dst interface!
<3>[44166.323663] qtaguid: iface_stat: stat_update() lo not found
<3>[44166.828775] tcp_get_mem_size_pst: can not get dst interface!
<3>[44166.837748] tcp_get_mem_size_pst: can not get dst interface!
<3>[44166.870374] qtaguid: iface_stat: stat_update() lo not found
<3>[44166.871076] tcp_get_mem_size_pst: can not get dst interface!
<3>[44166.874372] tcp_get_mem_size_pst: can not get dst interface!
<3>[44169.385619] tcp_get_mem_size_pst: can not get dst interface!
<3>[44169.394958] tcp_get_mem_size_pst: can not get dst interface!
<3>[44169.416353] qtaguid: iface_stat: stat_update() lo not found
<3>[44169.916063] tcp_get_mem_size_pst: can not get dst interface!
<3>[44169.925586] tcp_get_mem_size_pst: can not get dst interface!
<3>[44169.949025] qtaguid: iface_stat: stat_update() lo not found
<3>[44170.448796] tcp_get_mem_size_pst: can not get dst interface!
<3>[44170.457342] tcp_get_mem_size_pst: can not get dst interface!
<3>[44170.478279] qtaguid: iface_stat: stat_update() lo not found
<3>[44170.978813] tcp_get_mem_size_pst: can not get dst interface!
<3>[44170.990808] tcp_get_mem_size_pst: can not get dst interface!
<3>[44171.011928] qtaguid: iface_stat: stat_update() lo not found
<3>[44171.512340] tcp_get_mem_size_pst: can not get dst interface!
<3>[44171.521557] tcp_get_mem_size_pst: can not get dst interface!
<3>[44171.545180] qtaguid: iface_stat: stat_update() lo not found
<3>[44172.044951] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.053954] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.085757] qtaguid: iface_stat: stat_update() lo not found
<3>[44172.585497] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.594043] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.617147] qtaguid: iface_stat: stat_update() lo not found
<3>[44172.619314] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.630820] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.637412] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.640068] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.648980] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.651604] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.760776] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.766880] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.777196] tcp_get_mem_size_pst: can not get dst interface!
<3>[44172.780950] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.306449] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.316124] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.822274] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.834208] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.848735] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.860821] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.874617] tcp_get_mem_size_pst: can not get dst interface!
<3>[44173.886947] tcp_get_mem_size_pst: can not get dst interface!
<6>[44173.988336] sps:BAM 0x124c2000 enabled: ver:0x5, number of pipes:6
<3>[44174.399323] tcp_get_mem_size_pst: can not get dst interface!
<3>[44174.402070] tcp_get_mem_size_pst: can not get dst interface!
<3>[44174.911821] tcp_get_mem_size_pst: can not get dst interface!
<3>[44174.922045] tcp_get_mem_size_pst: can not get dst interface!
<3>[44174.936481] tcp_get_mem_size_pst: can not get dst interface!
<3>[44174.948690] tcp_get_mem_size_pst: can not get dst interface!
<3>[44174.964530] tcp_get_mem_size_pst: can not get dst interface!
<3>[44174.972953] tcp_get_mem_size_pst: can not get dst interface!
<3>[44175.478859] tcp_get_mem_size_pst: can not get dst interface!
<3>[44175.488809] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.001246] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.015438] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.033750] tcp_get_mem_size_pst: can not get dst interface!
<6>[44176.043425] SLIM_CL: skip reconfig sequence
<3>[44176.046294] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.066162] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.069459] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.075258] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.078706] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.184887] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.187969] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.195477] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.199384] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.703519] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.711760] tcp_get_mem_size_pst: can not get dst interface!
<3>[44176.732392] qtaguid: iface_stat: stat_update() lo not found
<3>[44176.947927] qtaguid: iface_stat: stat_update() lo not found
<3>[44177.231980] tcp_get_mem_size_pst: can not get dst interface!
<3>[44177.242509] tcp_get_mem_size_pst: can not get dst interface!
<3>[44177.262622] qtaguid: iface_stat: stat_update() lo not found
<3>[44177.266590] tcp_get_mem_size_pst: can not get dst interface!
<3>[44177.277058] tcp_get_mem_size_pst: can not get dst interface!
<3>[44177.302482] qtaguid: iface_stat: stat_update() lo not found
<3>[44177.306724] tcp_get_mem_size_pst: can not get dst interface!
<3>[44177.312431] tcp_get_mem_size_pst: can not get dst interface!
<6>[44179.547286] SLIM_CL: skip reconfig sequence
<3>[44180.264575] tcp_get_mem_size_pst: can not get dst interface!
<3>[44180.272328] tcp_get_mem_size_pst: can not get dst interface!
<3>[44182.301780] tcp_get_mem_size_pst: can not get dst interface!
<3>[44182.316277] tcp_get_mem_size_pst: can not get dst interface!
<3>[44182.442143] tcp_get_mem_size_pst: can not get dst interface!
<3>[44182.451055] tcp_get_mem_size_pst: can not get dst interface!
<3>[44182.476723] qtaguid: iface_stat: stat_update() lo not found
<3>[44182.492593] tcp_get_mem_size_pst: can not get dst interface!
<3>[44182.512431] tcp_get_mem_size_pst: can not get dst interface!
<3>[44183.017849] tcp_get_mem_size_pst: can not get dst interface!
<3>[44183.020687] tcp_get_mem_size_pst: can not get dst interface!
<3>[44183.026120] tcp_get_mem_size_pst: can not get dst interface!
<3>[44183.029141] tcp_get_mem_size_pst: can not get dst interface!
<3>[44183.136146] tcp_get_mem_size_pst: can not get dst interface!
<3>[44183.139289] tcp_get_mem_size_pst: can not get dst interface!
<4>[44183.188122] send sigkill to 20516 (ndroid.calendar), adj 705, size 11922
<4>[44183.188122] state:1 flag:0x400140
<3>[44185.149910] tcp_get_mem_size_pst: can not get dst interface!
<3>[44185.180919] tcp_get_mem_size_pst: can not get dst interface!
<3>[44185.301566] tcp_get_mem_size_pst: can not get dst interface!
<3>[44185.304343] tcp_get_mem_size_pst: can not get dst interface!
<3>[44186.316796] tcp_get_mem_size_pst: can not get dst interface!
<3>[44186.333429] tcp_get_mem_size_pst: can not get dst interface!
<3>[44186.452032] tcp_get_mem_size_pst: can not get dst interface!
<3>[44186.464301] tcp_get_mem_size_pst: can not get dst interface!
<3>[44188.497293] tcp_get_mem_size_pst: can not get dst interface!
<3>[44188.514781] tcp_get_mem_size_pst: can not get dst interface!
<3>[44188.632437] tcp_get_mem_size_pst: can not get dst interface!
<3>[44188.642082] tcp_get_mem_size_pst: can not get dst interface!
<3>[44189.679286] tcp_get_mem_size_pst: can not get dst interface!
<3>[44189.694699] tcp_get_mem_size_pst: can not get dst interface!
<3>[44189.814553] tcp_get_mem_size_pst: can not get dst interface!
<3>[44189.824228] tcp_get_mem_size_pst: can not get dst interface!
<3>[44191.860119] tcp_get_mem_size_pst: can not get dst interface!
<3>[44191.874342] tcp_get_mem_size_pst: can not get dst interface!
<3>[44191.994440] tcp_get_mem_size_pst: can not get dst interface!
<3>[44192.004237] tcp_get_mem_size_pst: can not get dst interface!
<3>[44193.041685] tcp_get_mem_size_pst: can not get dst interface!
<3>[44193.056640] tcp_get_mem_size_pst: can not get dst interface!
<3>[44193.186352] tcp_get_mem_size_pst: can not get dst interface!
<3>[44193.196118] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.225998] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.240373] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.362515] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.372312] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.408571] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.428714] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.447148] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.459814] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.569077] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.582964] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.590960] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.595966] tcp_get_mem_size_pst: can not get dst interface!
<3>[44195.692105] qtaguid: iface_stat: stat_update() lo not found
<3>[44197.610310] tcp_get_mem_size_pst: can not get dst interface!
<3>[44197.624899] tcp_get_mem_size_pst: can not get dst interface!
<3>[44197.744752] tcp_get_mem_size_pst: can not get dst interface!
<3>[44197.755374] tcp_get_mem_size_pst: can not get dst interface!
<3>[44198.788976] tcp_get_mem_size_pst: can not get dst interface!
<3>[44198.804115] tcp_get_mem_size_pst: can not get dst interface!
<3>[44198.924273] tcp_get_mem_size_pst: can not get dst interface!
<3>[44198.934772] tcp_get_mem_size_pst: can not get dst interface!
<3>[44200.968009] tcp_get_mem_size_pst: can not get dst interface!
<3>[44200.986443] tcp_get_mem_size_pst: can not get dst interface!
<3>[44201.109440] tcp_get_mem_size_pst: can not get dst interface!
<3>[44201.121282] tcp_get_mem_size_pst: can not get dst interface!
<3>[44203.277119] tcp_get_mem_size_pst: can not get dst interface!
<3>[44203.286977] tcp_get_mem_size_pst: can not get dst interface!
<3>[44203.309349] qtaguid: iface_stat: stat_update() lo not found
<6>[44204.365659] SLIM_CL: skip reconfig sequence
<3>[44205.324640] tcp_get_mem_size_pst: can not get dst interface!
<3>[44205.344600] tcp_get_mem_size_pst: can not get dst interface!
<3>[44205.464698] tcp_get_mem_size_pst: can not get dst interface!
<3>[44205.467383] tcp_get_mem_size_pst: can not get dst interface!
<3>[44205.478218] tcp_get_mem_size_pst: can not get dst interface!
<3>[44205.481606] tcp_get_mem_size_pst: can not get dst interface!
<3>[44205.987420] tcp_get_mem_size_pst: can not get dst interface!
<3>[44205.993616] tcp_get_mem_size_pst: can not get dst interface!
<3>[44206.012080] qtaguid: iface_stat: stat_update() lo not found
<3>[44206.511851] tcp_get_mem_size_pst: can not get dst interface!
<3>[44206.521252] tcp_get_mem_size_pst: can not get dst interface!
<3>[44206.545576] qtaguid: iface_stat: stat_update() lo not found
<4>[44206.997675] [sched_delayed] process 25303 (shi.soundpicker) no longer affine to cpu1
<3>[44207.043974] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.051635] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.560287] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.570115] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.606495] qtaguid: iface_stat: stat_update() lo not found
<3>[44207.611348] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.622274] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.638175] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.641044] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.651024] tcp_get_mem_size_pst: can not get dst interface!
<3>[44207.653863] tcp_get_mem_size_pst: can not get dst interface!
<6>[44208.716063] SLIM_CL: skip reconfig sequence
<3>[44212.793371] tcp_get_mem_size_pst: can not get dst interface!
<3>[44212.801917] tcp_get_mem_size_pst: can not get dst interface!
<3>[44214.816567] tcp_get_mem_size_pst: can not get dst interface!
<3>[44214.829935] tcp_get_mem_size_pst: can not get dst interface!
<3>[44214.946065] tcp_get_mem_size_pst: can not get dst interface!
<3>[44214.956167] tcp_get_mem_size_pst: can not get dst interface!
<3>[44215.019222] qtaguid: iface_stat: stat_update() lo not found
<3>[44215.023190] tcp_get_mem_size_pst: can not get dst interface!
<3>[44215.029141] tcp_get_mem_size_pst: can not get dst interface!
<3>[44215.541822] tcp_get_mem_size_pst: can not get dst interface!
<3>[44215.552444] tcp_get_mem_size_pst: can not get dst interface!
<3>[44215.671839] tcp_get_mem_size_pst: can not get dst interface!
<3>[44215.704405] tcp_get_mem_size_pst: can not get dst interface!
<6>[44218.958303] SLIM_CL: skip reconfig sequence
<3>[44221.738831] tcp_get_mem_size_pst: can not get dst interface!
<3>[44221.748567] tcp_get_mem_size_pst: can not get dst interface!
<3>[44222.260669] tcp_get_mem_size_pst: can not get dst interface!
<3>[44222.269337] tcp_get_mem_size_pst: can not get dst interface!
<3>[44222.781438] tcp_get_mem_size_pst: can not get dst interface!
<3>[44222.791418] tcp_get_mem_size_pst: can not get dst interface!
<3>[44223.302177] tcp_get_mem_size_pst: can not get dst interface!
<3>[44223.311699] tcp_get_mem_size_pst: can not get dst interface!
<3>[44223.823617] tcp_get_mem_size_pst: can not get dst interface!
<3>[44223.832193] tcp_get_mem_size_pst: can not get dst interface!
<3>[44224.344569] tcp_get_mem_size_pst: can not get dst interface!
<3>[44224.353115] tcp_get_mem_size_pst: can not get dst interface!
<3>[44224.865613] tcp_get_mem_size_pst: can not get dst interface!
<3>[44224.875044] tcp_get_mem_size_pst: can not get dst interface!
<3>[44225.388641] tcp_get_mem_size_pst: can not get dst interface!
<3>[44225.395538] tcp_get_mem_size_pst: can not get dst interface!
<3>[44225.905747] tcp_get_mem_size_pst: can not get dst interface!
<3>[44225.909746] tcp_get_mem_size_pst: can not get dst interface!
<3>[44226.421603] tcp_get_mem_size_pst: can not get dst interface!
<3>[44226.429233] tcp_get_mem_size_pst: can not get dst interface!
<3>[44226.941059] tcp_get_mem_size_pst: can not get dst interface!
<3>[44226.951162] tcp_get_mem_size_pst: can not get dst interface!
<3>[44226.972221] qtaguid: iface_stat: stat_update() lo not found
<3>[44227.472144] tcp_get_mem_size_pst: can not get dst interface!
<3>[44227.481087] tcp_get_mem_size_pst: can not get dst interface!
<3>[44228.017055] tcp_get_mem_size_pst: can not get dst interface!
<3>[44228.025876] tcp_get_mem_size_pst: can not get dst interface!
<3>[44228.543440] tcp_get_mem_size_pst: can not get dst interface!
<3>[44228.552657] tcp_get_mem_size_pst: can not get dst interface!
<3>[44229.062714] tcp_get_mem_size_pst: can not get dst interface!
<3>[44229.072389] tcp_get_mem_size_pst: can not get dst interface!
<3>[44229.582323] tcp_get_mem_size_pst: can not get dst interface!
<3>[44229.590991] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.101658] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.110417] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.121984] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.133796] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.299155] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.325158] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.339717] tcp_get_mem_size_pst: can not get dst interface!
<3>[44230.344112] tcp_get_mem_size_pst: can not get dst interface!
<3>[44231.352047] tcp_get_mem_size_pst: can not get dst interface!
<3>[44231.360623] tcp_get_mem_size_pst: can not get dst interface!
<3>[44231.376738] qtaguid: iface_stat: stat_update() lo not found
<3>[44231.876204] tcp_get_mem_size_pst: can not get dst interface!
<3>[44231.886489] tcp_get_mem_size_pst: can not get dst interface!
<3>[44231.902817] qtaguid: iface_stat: stat_update() lo not found
<3>[44232.401887] tcp_get_mem_size_pst: can not get dst interface!
<3>[44232.413149] tcp_get_mem_size_pst: can not get dst interface!
<3>[44232.431522] qtaguid: iface_stat: stat_update() lo not found
<3>[44232.931720] tcp_get_mem_size_pst: can not get dst interface!
<3>[44232.941975] tcp_get_mem_size_pst: can not get dst interface!
<3>[44232.958090] qtaguid: iface_stat: stat_update() lo not found
<3>[44233.457708] tcp_get_mem_size_pst: can not get dst interface!
<3>[44233.466285] tcp_get_mem_size_pst: can not get dst interface!
<3>[44233.482003] qtaguid: iface_stat: stat_update() lo not found
<3>[44233.981743] tcp_get_mem_size_pst: can not get dst interface!
<3>[44233.993493] tcp_get_mem_size_pst: can not get dst interface!
<3>[44234.011348] qtaguid: iface_stat: stat_update() lo not found
<3>[44234.511119] tcp_get_mem_size_pst: can not get dst interface!
<3>[44234.520489] tcp_get_mem_size_pst: can not get dst interface!
<3>[44234.535535] qtaguid: iface_stat: stat_update() lo not found
<3>[44235.035703] tcp_get_mem_size_pst: can not get dst interface!
<3>[44235.057189] tcp_get_mem_size_pst: can not get dst interface!
<3>[44235.082949] qtaguid: iface_stat: stat_update() lo not found
<3>[44235.582964] tcp_get_mem_size_pst: can not get dst interface!
<3>[44235.591418] tcp_get_mem_size_pst: can not get dst interface!
<3>[44235.608723] qtaguid: iface_stat: stat_update() lo not found
<3>[44236.108128] tcp_get_mem_size_pst: can not get dst interface!
<3>[44236.116796] tcp_get_mem_size_pst: can not get dst interface!
<3>[44236.133582] qtaguid: iface_stat: stat_update() lo not found
<3>[44236.633689] tcp_get_mem_size_pst: can not get dst interface!
<3>[44236.644859] tcp_get_mem_size_pst: can not get dst interface!
<3>[44236.661829] qtaguid: iface_stat: stat_update() lo not found
<3>[44237.161569] tcp_get_mem_size_pst: can not get dst interface!
<3>[44237.172007] tcp_get_mem_size_pst: can not get dst interface!
<3>[44237.189038] qtaguid: iface_stat: stat_update() lo not found
<3>[44237.689114] tcp_get_mem_size_pst: can not get dst interface!
<3>[44237.697446] tcp_get_mem_size_pst: can not get dst interface!
<3>[44237.714629] qtaguid: iface_stat: stat_update() lo not found
<3>[44238.214675] tcp_get_mem_size_pst: can not get dst interface!
<3>[44238.223434] tcp_get_mem_size_pst: can not get dst interface!
<3>[44238.239701] qtaguid: iface_stat: stat_update() lo not found
<3>[44238.739167] tcp_get_mem_size_pst: can not get dst interface!
<3>[44238.747591] tcp_get_mem_size_pst: can not get dst interface!
<3>[44238.763339] qtaguid: iface_stat: stat_update() lo not found
<3>[44239.263599] tcp_get_mem_size_pst: can not get dst interface!
<3>[44239.273030] tcp_get_mem_size_pst: can not get dst interface!
<3>[44239.288412] qtaguid: iface_stat: stat_update() lo not found
<3>[44239.789160] tcp_get_mem_size_pst: can not get dst interface!
<3>[44239.797614] tcp_get_mem_size_pst: can not get dst interface!
<3>[44239.813851] qtaguid: iface_stat: stat_update() lo not found
<3>[44239.815834] tcp_get_mem_size_pst: can not get dst interface!
<3>[44239.827432] tcp_get_mem_size_pst: can not get dst interface!
<3>[44239.841472] qtaguid: iface_stat: stat_update() lo not found
<3>[44241.994318] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.005305] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.028317] qtaguid: iface_stat: stat_update() lo not found
<3>[44242.030362] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.043577] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.066834] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.071565] qtaguid: iface_stat: stat_update() lo not found
<3>[44242.091647] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.104160] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.106907] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.118902] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.122015] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.129859] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.132392] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.257647] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.288168] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.318963] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.324853] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.436558] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.438908] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.442387] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.444707] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.559219] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.561630] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.564041] qtaguid: iface_stat: stat_update() lo not found
<3>[44242.565506] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.569474] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.676509] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.679927] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.685665] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.689846] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.695584] qtaguid: iface_stat: stat_update() lo not found
<3>[44242.696683] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.702634] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.709257] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.714537] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.721191] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.725616] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.735261] tcp_get_mem_size_pst: can not get dst interface!
<3>[44242.742219] tcp_get_mem_size_pst: can not get dst interface!
<3>[44244.679195] tcp_get_mem_size_pst: can not get dst interface!
<3>[44244.687740] tcp_get_mem_size_pst: can not get dst interface!
<3>[44245.719176] tcp_get_mem_size_pst: can not get dst interface!
<3>[44245.730316] tcp_get_mem_size_pst: can not get dst interface!
<3>[44245.745607] qtaguid: iface_stat: stat_update() lo not found
<3>[44245.750338] tcp_get_mem_size_pst: can not get dst interface!
<3>[44245.760898] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.777470] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.786871] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.806678] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.820840] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.840037] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.854351] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.972007] tcp_get_mem_size_pst: can not get dst interface!
<3>[44246.974937] tcp_get_mem_size_pst: can not get dst interface!
<6>[44250.184765] SLIM_CL: skip reconfig sequence
<3>[44252.026944] tcp_get_mem_size_pst: can not get dst interface!
<3>[44252.041227] tcp_get_mem_size_pst: can not get dst interface!
<3>[44252.063629] tcp_get_mem_size_pst: can not get dst interface!
<3>[44252.076448] tcp_get_mem_size_pst: can not get dst interface!
<3>[44252.193066] tcp_get_mem_size_pst: can not get dst interface!
<3>[44252.201703] tcp_get_mem_size_pst: can not get dst interface!
<3>[44253.277089] tcp_get_mem_size_pst: can not get dst interface!
<3>[44253.326227] tcp_get_mem_size_pst: can not get dst interface!
<3>[44253.831949] tcp_get_mem_size_pst: can not get dst interface!
<3>[44253.863599] tcp_get_mem_size_pst: can not get dst interface!
<3>[44253.892868] tcp_get_mem_size_pst: can not get dst interface!
<3>[44253.910142] tcp_get_mem_size_pst: can not get dst interface!
<3>[44254.918230] tcp_get_mem_size_pst: can not get dst interface!
<3>[44254.928577] tcp_get_mem_size_pst: can not get dst interface!
<3>[44255.442662] tcp_get_mem_size_pst: can not get dst interface!
<3>[44255.452459] tcp_get_mem_size_pst: can not get dst interface!
<6>[44255.544112] SLIM_CL: skip reconfig sequence
<3>[44255.968436] tcp_get_mem_size_pst: can not get dst interface!
<3>[44255.977318] tcp_get_mem_size_pst: can not get dst interface!
<3>[44256.494852] tcp_get_mem_size_pst: can not get dst interface!
<3>[44256.504649] tcp_get_mem_size_pst: can not get dst interface!
<3>[44257.017849] tcp_get_mem_size_pst: can not get dst interface!
<3>[44257.026455] tcp_get_mem_size_pst: can not get dst interface!
<3>[44257.542585] tcp_get_mem_size_pst: can not get dst interface!
<3>[44257.551284] tcp_get_mem_size_pst: can not get dst interface!
<3>[44258.065430] tcp_get_mem_size_pst: can not get dst interface!
<3>[44258.074006] tcp_get_mem_size_pst: can not get dst interface!
<3>[44258.589343] tcp_get_mem_size_pst: can not get dst interface!
<3>[44258.598163] tcp_get_mem_size_pst: can not get dst interface!
<3>[44259.112309] tcp_get_mem_size_pst: can not get dst interface!
<3>[44259.121191] tcp_get_mem_size_pst: can not get dst interface!
<3>[44259.635459] tcp_get_mem_size_pst: can not get dst interface!
<3>[44259.644340] tcp_get_mem_size_pst: can not get dst interface!
<3>[44260.157785] tcp_get_mem_size_pst: can not get dst interface!
<3>[44260.167215] tcp_get_mem_size_pst: can not get dst interface!
<3>[44260.679714] tcp_get_mem_size_pst: can not get dst interface!
<3>[44260.689297] tcp_get_mem_size_pst: can not get dst interface!
<3>[44261.203687] tcp_get_mem_size_pst: can not get dst interface!
<3>[44261.212721] tcp_get_mem_size_pst: can not get dst interface!
<3>[44261.725433] tcp_get_mem_size_pst: can not get dst interface!
<3>[44261.735383] tcp_get_mem_size_pst: can not get dst interface!
<3>[44262.248583] tcp_get_mem_size_pst: can not get dst interface!
<3>[44262.271717] tcp_get_mem_size_pst: can not get dst interface!
<3>[44262.784154] tcp_get_mem_size_pst: can not get dst interface!
<3>[44262.793677] tcp_get_mem_size_pst: can not get dst interface!
<3>[44263.305137] tcp_get_mem_size_pst: can not get dst interface!
<3>[44263.313927] tcp_get_mem_size_pst: can not get dst interface!
<3>[44263.327081] tcp_get_mem_size_pst: can not get dst interface!
<3>[44263.338923] tcp_get_mem_size_pst: can not get dst interface!
<3>[44263.517406] tcp_get_mem_size_pst: can not get dst interface!
<3>[44263.520977] tcp_get_mem_size_pst: can not get dst interface!
<3>[44264.026883] tcp_get_mem_size_pst: can not get dst interface!
<3>[44264.035520] tcp_get_mem_size_pst: can not get dst interface!
<3>[44264.051421] tcp_get_mem_size_pst: can not get dst interface!
<3>[44264.062958] tcp_get_mem_size_pst: can not get dst interface!
<3>[44265.077425] tcp_get_mem_size_pst: can not get dst interface!
<3>[44265.091678] tcp_get_mem_size_pst: can not get dst interface!
<3>[44265.210127] tcp_get_mem_size_pst: can not get dst interface!
<3>[44265.218581] tcp_get_mem_size_pst: can not get dst interface!
<3>[44266.269062] tcp_get_mem_size_pst: can not get dst interface!
<3>[44266.327814] tcp_get_mem_size_pst: can not get dst interface!
<3>[44266.831308] tcp_get_mem_size_pst: can not get dst interface!
<3>[44266.837107] tcp_get_mem_size_pst: can not get dst interface!
<3>[44266.848705] tcp_get_mem_size_pst: can not get dst interface!
<3>[44266.856945] tcp_get_mem_size_pst: can not get dst interface!
<3>[44267.871473] tcp_get_mem_size_pst: can not get dst interface!
<3>[44267.882125] tcp_get_mem_size_pst: can not get dst interface!
<3>[44268.395721] tcp_get_mem_size_pst: can not get dst interface!
<3>[44268.405427] tcp_get_mem_size_pst: can not get dst interface!
<6>[44268.583574] SLIM_CL: skip reconfig sequence
<3>[44268.938526] tcp_get_mem_size_pst: can not get dst interface!
<3>[44268.947530] tcp_get_mem_size_pst: can not get dst interface!
<3>[44269.459173] tcp_get_mem_size_pst: can not get dst interface!
<3>[44269.467902] tcp_get_mem_size_pst: can not get dst interface!
<3>[44269.978966] tcp_get_mem_size_pst: can not get dst interface!
<3>[44269.988946] tcp_get_mem_size_pst: can not get dst interface!
<3>[44270.505656] tcp_get_mem_size_pst: can not get dst interface!
<3>[44270.515575] tcp_get_mem_size_pst: can not get dst interface!
<3>[44271.026761] tcp_get_mem_size_pst: can not get dst interface!
<3>[44271.035459] tcp_get_mem_size_pst: can not get dst interface!
<3>[44271.547255] tcp_get_mem_size_pst: can not get dst interface!
<3>[44271.556839] tcp_get_mem_size_pst: can not get dst interface!
<3>[44272.069337] tcp_get_mem_size_pst: can not get dst interface!
<3>[44272.077974] tcp_get_mem_size_pst: can not get dst interface!
<3>[44272.589099] tcp_get_mem_size_pst: can not get dst interface!
<3>[44272.597583] tcp_get_mem_size_pst: can not get dst interface!
<3>[44273.109257] tcp_get_mem_size_pst: can not get dst interface!
<3>[44273.118627] tcp_get_mem_size_pst: can not get dst interface!
<3>[44273.638969] tcp_get_mem_size_pst: can not get dst interface!
<3>[44273.649590] tcp_get_mem_size_pst: can not get dst interface!
<3>[44274.169749] tcp_get_mem_size_pst: can not get dst interface!
<3>[44274.178722] tcp_get_mem_size_pst: can not get dst interface!
<3>[44274.690548] tcp_get_mem_size_pst: can not get dst interface!
<3>[44274.699338] tcp_get_mem_size_pst: can not get dst interface!
<3>[44275.211867] tcp_get_mem_size_pst: can not get dst interface!
<3>[44275.221572] tcp_get_mem_size_pst: can not get dst interface!
<3>[44275.733460] tcp_get_mem_size_pst: can not get dst interface!
<3>[44275.742921] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.256640] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.265583] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.278615] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.290335] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.544356] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.554183] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.562241] tcp_get_mem_size_pst: can not get dst interface!
<3>[44276.569016] tcp_get_mem_size_pst: can not get dst interface!
<3>[44277.582628] tcp_get_mem_size_pst: can not get dst interface!
<3>[44277.591174] tcp_get_mem_size_pst: can not get dst interface!
<3>[44277.616201] tcp_get_mem_size_pst: can not get dst interface!
<3>[44277.624777] tcp_get_mem_size_pst: can not get dst interface!
<3>[44277.742616] tcp_get_mem_size_pst: can not get dst interface!
<3>[44277.769718] tcp_get_mem_size_pst: can not get dst interface!
<3>[44278.862256] tcp_get_mem_size_pst: can not get dst interface!
<3>[44278.876631] tcp_get_mem_size_pst: can not get dst interface!
<3>[44279.379942] tcp_get_mem_size_pst: can not get dst interface!
<3>[44279.382964] tcp_get_mem_size_pst: can not get dst interface!
<6>[44281.104618] SLIM_CL: skip reconfig sequence
<3>[44281.394379] tcp_get_mem_size_pst: can not get dst interface!
<3>[44281.408143] tcp_get_mem_size_pst: can not get dst interface!
<3>[44281.432865] qtaguid: iface_stat: stat_update() lo not found
<3>[44281.538831] tcp_get_mem_size_pst: can not get dst interface!
<3>[44281.559982] tcp_get_mem_size_pst: can not get dst interface!
<3>[44281.597400] qtaguid: iface_stat: stat_update() lo not found
<3>[44282.614308] tcp_get_mem_size_pst: can not get dst interface!
<3>[44282.643516] tcp_get_mem_size_pst: can not get dst interface!
<3>[44282.695187] qtaguid: iface_stat: stat_update() lo not found
<3>[44283.177928] tcp_get_mem_size_pst: can not get dst interface!
<3>[44283.187573] tcp_get_mem_size_pst: can not get dst interface!
<3>[44283.216384] tcp_get_mem_size_pst: can not get dst interface!
<3>[44283.249010] tcp_get_mem_size_pst: can not get dst interface!
<3>[44283.373045] tcp_get_mem_size_pst: can not get dst interface!
<3>[44283.375731] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.495340] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.505045] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.526471] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.542616] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.662378] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.672480] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.717406] tcp_get_mem_size_pst: can not get dst interface!
<3>[44285.722534] tcp_get_mem_size_pst: can not get dst interface!
<3>[44286.228104] tcp_get_mem_size_pst: can not get dst interface!
<3>[44286.230179] tcp_get_mem_size_pst: can not get dst interface!
<3>[44286.233384] qtaguid: iface_stat: stat_update() lo not found
<6>[44288.934894] SLIM_CL: skip reconfig sequence
<3>[44292.696713] tcp_get_mem_size_pst: can not get dst interface!
<3>[44292.710112] tcp_get_mem_size_pst: can not get dst interface!
<3>[44292.829294] tcp_get_mem_size_pst: can not get dst interface!
<3>[44292.838694] tcp_get_mem_size_pst: can not get dst interface!
<3>[44292.865522] qtaguid: iface_stat: stat_update() lo not found
<3>[44292.873945] tcp_get_mem_size_pst: can not get dst interface!
<3>[44292.896835] tcp_get_mem_size_pst: can not get dst interface!
<3>[44293.402650] tcp_get_mem_size_pst: can not get dst interface!
<3>[44293.405671] tcp_get_mem_size_pst: can not get dst interface!
<3>[44293.418978] qtaguid: iface_stat: stat_update() lo not found
<3>[44293.523327] tcp_get_mem_size_pst: can not get dst interface!
<3>[44293.530438] tcp_get_mem_size_pst: can not get dst interface!
<3>[44293.550460] qtaguid: iface_stat: stat_update() lo not found
<6>[44296.798560] SLIM_CL: skip reconfig sequence
<3>[44299.964255] tcp_get_mem_size_pst: can not get dst interface!
<3>[44299.977348] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.102848] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.111851] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.135352] qtaguid: iface_stat: stat_update() lo not found
<3>[44300.150368] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.167093] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.672602] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.676051] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.787908] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.793310] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.800666] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.803535] tcp_get_mem_size_pst: can not get dst interface!
<3>[44300.809700] qtaguid: iface_stat: stat_update() lo not found
<3>[44301.309288] tcp_get_mem_size_pst: can not get dst interface!
<3>[44301.318658] tcp_get_mem_size_pst: can not get dst interface!
<3>[44301.829813] tcp_get_mem_size_pst: can not get dst interface!
<3>[44301.837931] tcp_get_mem_size_pst: can not get dst interface!
<6>[44304.008174] SLIM_CL: skip reconfig sequence
<3>[44306.155770] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.169718] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.187786] qtaguid: iface_stat: stat_update() lo not found
<3>[44306.293295] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.301688] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.329706] qtaguid: iface_stat: stat_update() lo not found
<3>[44306.339167] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.373289] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.878798] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.880873] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.886459] qtaguid: iface_stat: stat_update() lo not found
<4>[44306.927875] send sigkill to 16960 (n.conversations), adj 764, size 11887
<4>[44306.927875] state:1 flag:0x400140
<3>[44306.986901] tcp_get_mem_size_pst: can not get dst interface!
<3>[44306.989343] tcp_get_mem_size_pst: can not get dst interface!
<3>[44310.110631] tcp_get_mem_size_pst: can not get dst interface!
<3>[44310.140632] tcp_get_mem_size_pst: can not get dst interface!
<3>[44310.164163] qtaguid: iface_stat: stat_update() lo not found
<6>[44310.203809] SLIM_CL: skip reconfig sequence
<3>[44310.265430] tcp_get_mem_size_pst: can not get dst interface!
<3>[44310.268299] tcp_get_mem_size_pst: can not get dst interface!
<3>[44311.280202] tcp_get_mem_size_pst: can not get dst interface!
<3>[44311.295462] tcp_get_mem_size_pst: can not get dst interface!
<6>[44313.599109] SLIM_CL: skip reconfig sequence
<3>[44315.595569] tcp_get_mem_size_pst: can not get dst interface!
<3>[44315.604420] tcp_get_mem_size_pst: can not get dst interface!
<3>[44315.619833] qtaguid: iface_stat: stat_update() lo not found
<3>[44317.621725] tcp_get_mem_size_pst: can not get dst interface!
<3>[44317.634818] tcp_get_mem_size_pst: can not get dst interface!
<3>[44317.654748] qtaguid: iface_stat: stat_update() lo not found
<3>[44317.760318] tcp_get_mem_size_pst: can not get dst interface!
<3>[44317.769596] tcp_get_mem_size_pst: can not get dst interface!
<3>[44317.793249] qtaguid: iface_stat: stat_update() lo not found
<3>[44317.809425] tcp_get_mem_size_pst: can not get dst interface!
<3>[44317.834971] tcp_get_mem_size_pst: can not get dst interface!
<3>[44318.346553] tcp_get_mem_size_pst: can not get dst interface!
<3>[44318.352016] tcp_get_mem_size_pst: can not get dst interface!
<3>[44320.528485] tcp_get_mem_size_pst: can not get dst interface!
<3>[44320.538130] tcp_get_mem_size_pst: can not get dst interface!
<3>[44320.559494] qtaguid: iface_stat: stat_update() lo not found
<6>[44321.094485] SLIM_CL: skip reconfig sequence
<3>[44322.560287] tcp_get_mem_size_pst: can not get dst interface!
<3>[44322.573869] tcp_get_mem_size_pst: can not get dst interface!
<3>[44322.594104] qtaguid: iface_stat: stat_update() lo not found
<3>[44322.698758] tcp_get_mem_size_pst: can not get dst interface!
<3>[44322.708586] tcp_get_mem_size_pst: can not get dst interface!
<3>[44322.729370] qtaguid: iface_stat: stat_update() lo not found
<3>[44325.962668] tcp_get_mem_size_pst: can not get dst interface!
<3>[44325.970756] tcp_get_mem_size_pst: can not get dst interface!
<6>[44326.054137] SLIM_CL: skip reconfig sequence
<3>[44327.985345] tcp_get_mem_size_pst: can not get dst interface!
<3>[44327.999537] tcp_get_mem_size_pst: can not get dst interface!
<3>[44328.121649] tcp_get_mem_size_pst: can not get dst interface!
<3>[44328.131751] tcp_get_mem_size_pst: can not get dst interface!
<4>[44329.410463] send sigkill to 16852 (viders.calendar), adj 764, size 8197
<4>[44329.410524] state:1 flag:0x400140
<4>[44329.560531] send sigkill to 23753 (nyericsson.dlna), adj 764, size 7853
<4>[44329.560684] state:1 flag:0x400140
<4>[44329.606678] send sigkill to 17128 (social.services), adj 764, size 7798
<4>[44329.606800] state:1 flag:0x400140
<4>[44329.704649] send sigkill to 19621 (ination.service), adj 764, size 7493
<4>[44329.704771] state:1 flag:0x400140
<4>[44329.761447] send sigkill to 19583 (yericsson.music), adj 705, size 15253
<4>[44329.761569] state:1 flag:0x400140
<1>[44330.850628] Unable to handle kernel paging request at virtual address 4020841c
<1>[44330.850750] pgd = c490c000
<1>[44330.850841] [4020841c] *pgd=84451831, *pte=bf05859d, *ppte=00000000
<0>[44330.851055] Internal error: Oops: 17 [#1] PREEMPT SMP ARM
<4>[44330.851146] Modules linked in: hid_sony(O)
<4>[44330.851330] CPU: 1 Tainted: G W O (3.4.0-perf-gf496dca-01162-gcbcc62b #1)
<4>[44330.851421] PC is at vector_swi+0x28/0x88
<4>[44330.851482] LR is at 0x40208420
<4>[44330.851604] pc : [<c000dfe8>] lr : [<40208420>] psr: 60000093
<4>[44330.851604] sp : e0601fb0 ip : 40092f78 fp : befcd6fc
<4>[44330.851757] r10: 4005a040 r9 : 4012fa70 r8 : 60000010
<4>[44330.851818] r7 : 00000107 r6 : 00000003 r5 : 4005a030 r4 : 5746d378
<4>[44330.851909] r3 : 5883fbf8 r2 : 00000000 r1 : befcd6d0 r0 : 00000001
<4>[44330.851971] Flags: nZCv IRQs off FIQs on Mode SVC_32 ISA ARM Segment user
<4>[44330.852093] Control: 10c5787d Table: 84b0c06a DAC: 00000015
<4>[44330.852154]
<4>[44330.852154] PC: 0xc000df68:
<4>[44330.852306] df68 e31100ff 1afffff0 e59d1040 e5bde03c e16ff001 f57ff01f e95d7fff e1a00000
<4>[44330.852825] df88 e28dd00c e1b0f00e eb025aba e1a096ad e1a09689 e5991000 e3a08001 e3110c03
<4>[44330.853405] dfa8 0affffec e1a0100d e3a00001 eb000911 eaffffe8 e320f000 e24dd048 e88d1fff
<4>[44330.853954] dfc8 e28d803c e9486000 e14f8000 e58de03c e58d8040 e58d0044 e3180020 13a0a000
<4>[44330.854534] dfe8 051ea004 e59fc0ac e59cc000 ee01cf10 f1080080 e1a096ad e1a09689 e28f809c
<4>[44330.855053] e008 e3daa4ff 122a7609 159f808c e599a000 e92d0030 e31a0c03 1a000008 e3570f5f
<4>[44330.855602] e028 e24fee13 3798f107 e28d1008 e3a08000 e357080f e2270000 2a000fac ea022fd4
<4>[44330.856152] e048 e1a02007 e28d1008 e3a00000 eb0008e9 e28fe014 e1a07000 e28d1008 e3570f5f
<4>[44330.856732]
<4>[44330.856732] SP: 0xe0601f30:
<4>[44330.856823] 1f30 00000000 00000000 c0d44f98 00000001 e18fce48 00000002 e565fa80 00000000
<4>[44330.857373] 1f50 c000dfe8 60000093 ffffffff e0601f9c 60000010 c0731518 00000001 befcd6d0
<4>[44330.857891] 1f70 00000000 5883fbf8 5746d378 4005a030 00000003 00000107 60000010 4012fa70
<4>[44330.858471] 1f90 4005a040 befcd6fc 40092f78 e0601fb0 40208420 c000dfe8 60000093 ffffffff
<4>[44330.859021] 1fb0 00000001 befcd6d0 00000000 5883fbf8 5746d378 4005a030 00000003 00000107
<4>[44330.859570] 1fd0 befcd6e8 4012fa70 4005a040 befcd6fc 40092f78 befcd6c8 4008aef9 40208420
<4>[44330.860089] 1ff0 60000010 00000001 ffe6e6e6 ffe6e6e6 00000000 00000000 00000000 00000000
<4>[44330.860669] 2010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
<0>[44330.861218] Process ndroid.settings (pid: 25518, stack limit = 0xe06002f0)
<0>[44330.861279] Stack: (0xe0601fb0 to 0xe0602000)
<0>[44330.861401] 1fa0: 00000001 befcd6d0 00000000 5883fbf8
<0>[44330.861462] 1fc0: 5746d378 4005a030 00000003 00000107 befcd6e8 4012fa70 4005a040 befcd6fc
<0>[44330.861584] 1fe0: 40092f78 befcd6c8 4008aef9 40208420 60000010 00000001 ffe6e6e6 ffe6e6e6
<0>[44330.861707] Code: e58d8040 e58d0044 e3180020 13a0a000 (051ea004)
<4>[44330.861890] ---[ end trace da227214a82491c0 ]---
<0>[44330.862012] Kernel panic - not syncing: Fatal exception
<2>[44330.862073] CPU0: stopping
<4>[44330.862195] [<c0014df8>] (unwind_backtrace+0x0/0x11c) from [<c001339c>] (handle_IPI+0x110/0x224)
<4>[44330.862256] [<c001339c>] (handle_IPI+0x110/0x224) from [<c000868c>] (gic_handle_irq+0x104/0x110)
<4>[44330.862378] [<c000868c>] (gic_handle_irq+0x104/0x110) from [<c0731580>] (__irq_svc+0x40/0x70)
<4>[44330.862470] Exception stack(0xc7439b10 to 0xc7439b58)
<4>[44330.862531] 9b00: 00000001 bf05f000 00000004 1a55b000
<4>[44330.862653] 9b20: bf05f59d d2b4ac08 000bf05f ca5ca03c 00000000 c7439c24 4020f000 00000001
<4>[44330.862744] 9b40: c0f2ab50 c7439b58 c0123038 c0123040 00000113 ffffffff
<4>[44330.862836] [<c0731580>] (__irq_svc+0x40/0x70) from [<c0123040>] (memblock_is_memory+0x18/0x20)
<4>[44330.862958] [<c0123040>] (memblock_is_memory+0x18/0x20) from [<c00198b4>] (__sync_icache_dcache+0x40/0x9c)
<4>[44330.863049] [<c00198b4>] (__sync_icache_dcache+0x40/0x9c) from [<c0121a44>] (ptep_clear_flush_young+0x3c/0x60)
<4>[44330.863171] [<c0121a44>] (ptep_clear_flush_young+0x3c/0x60) from [<c011d3b0>] (page_referenced_one+0x6c/0xfc)
<4>[44330.863294] [<c011d3b0>] (page_referenced_one+0x6c/0xfc) from [<c011e9e4>] (page_referenced+0x1a8/0x200)
<4>[44330.863416] [<c011e9e4>] (page_referenced+0x1a8/0x200) from [<c010522c>] (shrink_active_list.isra.49+0x1ec/0x2e8)
<4>[44330.863477] [<c010522c>] (shrink_active_list.isra.49+0x1ec/0x2e8) from [<c0106554>] (shrink_mem_cgroup_zone+0x338/0x4c4)
<4>[44330.863599] [<c0106554>] (shrink_mem_cgroup_zone+0x338/0x4c4) from [<c010740c>] (try_to_free_pages+0x2a0/0x570)
<4>[44330.863690] [<c010740c>] (try_to_free_pages+0x2a0/0x570) from [<c00fbff0>] (__alloc_pages_nodemask+0x424/0x758)
<4>[44330.863812] [<c00fbff0>] (__alloc_pages_nodemask+0x424/0x758) from [<c0116dcc>] (handle_pte_fault+0x184/0x7c8)
<4>[44330.863934] [<c0116dcc>] (handle_pte_fault+0x184/0x7c8) from [<c011751c>] (handle_mm_fault+0x10c/0x128)
<4>[44330.864057] [<c011751c>] (handle_mm_fault+0x10c/0x128) from [<c0732cc0>] (do_page_fault+0x180/0x3c0)
<4>[44330.864148] [<c0732cc0>] (do_page_fault+0x180/0x3c0) from [<c000847c>] (do_DataAbort+0x134/0x1a8)
<4>[44330.864270] [<c000847c>] (do_DataAbort+0x134/0x1a8) from [<c07316f4>] (__dabt_usr+0x34/0x40)
<4>[44330.864331] Exception stack(0xc7439fb0 to 0xc7439ff8)
<4>[44330.864453] 9fa0: 40baa000 40fab040 0002d440 00000000
<4>[44330.864545] 9fc0: 41ed0f10 00000001 408d72c0 41ed0f2c 0000001c 00000000 40fab400 00000001
<4>[44330.864606] 9fe0: 00000380 59c70e10 00000400 40209364 20000010 ffffffff
<3>[44330.864728] &@running_process@cpu0:*GC*
<3>[44330.965048] wcnss_8960: crash shutdown : 0
<3>[44336.972831] mdm_panic_prep: MDM2AP_STATUS never went low
<6>[44336.982903] amsslog: crash log size=16384
<3>[44336.983025] &@panic_name@:*ndroid.settings*
<0>[44336.983208] Rebooting in 5 seconds..
<0>[44341.989617] Restarting Linux version 3.4.0-perf-gf496dca-01162-gcbcc62b (BuildUser@BuildHost) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Apr 28 09:22:00 2013
<0>[44341.989617]
<4>[44341.989831]
<0>[44341.989892] Restarting Linux version 3.4.0-perf-gf496dca-01162-gcbcc62b (BuildUser@BuildHost) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Apr 28 09:22:00 2013
<0>[44341.989892]
<5>[44341.990106] Going down for restart now
[-- Attachment #3: stack.txt --]
[-- Type: text/plain, Size: 747 bytes --]
crash_noites_save_this_cpu(type = CRASH_NOTE_CRASHING = 0x2, cpu = 0x1)
update_crash_notes(?, ?, ?)
notifier_call_chain(?, val = 0x0, v = 0xC0ECBE9C, nr_to_call = 0x5, nr_calls = 0x0)
__atomic_notifier_call_chain(nh = 0xC0ECC29C, val = 0x0, v = 0xC0ECBE9C, nr_to_call = 0xFFFFFFFF, nr_calls = 0x0)
atomic_notifier_call_chain(?, ?, ?)
panic(fmt = 0xC098BC02)
die(?, regs = 0xE0601F68, err = 0x17)
__do_kernel_fault.part.8(mm = 0xC73E7DC0, addr = 0x4020841C, fsr = 0x17, regs = 0xE0601F68)
do_page_fault(addr = 0xC73E7DC0, fsr = 0x17, regs = 0x4020841C)
do_DataAbort(addr = 0x4020841C, fsr = 0x17, regs = 0xE0601F68)
__dabt_svc(asm)
exception
vector_swi(asm)
ret_fast_syscall(asm)
exception
NUR:0xFFFF:0x40208420(asm)
end of frame
^ permalink raw reply [flat|nested] 36+ messages in thread* Re: A bug about system call on ARM 2013-05-29 6:52 A bug about system call on ARM Wang, Yalin @ 2013-05-29 7:34 ` richard -rw- weinberger 2013-05-29 7:37 ` Wang, Yalin 0 siblings, 1 reply; 36+ messages in thread From: richard -rw- weinberger @ 2013-05-29 7:34 UTC (permalink / raw) To: Wang, Yalin; +Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Hi! On Wed, May 29, 2013 at 8:52 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: > Hi all, > > I am a new comer to this mailing list , > I am happy to join this community . > > I have a bug reported from our android phones which is caused by the system call . > It seems like kernel bugs from my view . Is this a unmodified Linux kernel from kernel.org? In other works, no (half broken) board support package from your hardware vendor? Did you try a more recent kernel? (At least 3.4.47). Maybe your problem is already known and fixed... > Crash in file arch\arm\kernel\ entry-common.S > > /***************************************************************/ > > ENTRY(vector_swi) > sub sp, sp, #S_FRAME_SIZE > stmia sp, {r0 - r12} @ Calling r0 - r12 > ARM( add r8, sp, #S_PC ) > ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr > THUMB( mov r8, sp ) > THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr > mrs r8, spsr @ called from non-FIQ mode, so ok. > str lr, [sp, #S_PC] @ Save calling PC > str r8, [sp, #S_PSR] @ Save CPSR > str r0, [sp, #S_OLD_R0] @ Save OLD_R0 > zero_fp > > /* > * Get the system call number. > */ > > #if defined(CONFIG_OABI_COMPAT) > > /* > * If we have CONFIG_OABI_COMPAT then we need to look at the swi > * value to determine if it is an EABI or an old ABI call. > */ > #ifdef CONFIG_ARM_THUMB > tst r8, #PSR_T_BIT > movne r10, #0 @ no thumb OABI emulation > ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction > #else > ldr r10, [lr, #-4] @ get SWI instruction > A710( and ip, r10, #0x0f000000 @ check for SWI ) > A710( teq ip, #0x0f000000 ) > A710( bne .Larm710bug ) > #endif > #ifdef CONFIG_CPU_ENDIAN_BE8 > rev r10, r10 @ little endian instruction > #endif > > /***************************************************************************************************/ > > Then reason why it will crash when get SWI instruction is maybe > This page is clear to aged by kernel, > But this MMU fault happpened in kernel, > So the kernel do_page_fault function will not clear this page to young, > So that will crash . > > It should poll this page to make it present or the fault should be handled by fixup section , > Anyway, this place should not crash by kernel . > > The kernel version I used is 3.4.0 > I have add the kernel log and the call stack recovered by trace32 tools > Pls have a look at it . > > > Thanks . > > > > Sony Mobile Communications > Tel: +86 10 5966 9819 > Phone: 18610323092 > Address: No.16 Guangshun South Street, Chaoyang, Beijing, P.R.C. > > sonymobile.com > > > -- Thanks, //richard ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-29 7:34 ` richard -rw- weinberger @ 2013-05-29 7:37 ` Wang, Yalin 2013-05-29 8:24 ` Wang, Yalin 0 siblings, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-05-29 7:37 UTC (permalink / raw) To: 'richard -rw- weinberger' Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Hi Richard, Thanks for your reply , I will make a check for this . -----Original Message----- From: richard -rw- weinberger [mailto:richard.weinberger@gmail.com] Sent: Wednesday, May 29, 2013 3:35 PM To: Wang, Yalin Cc: linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org Subject: Re: A bug about system call on ARM Hi! On Wed, May 29, 2013 at 8:52 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: > Hi all, > > I am a new comer to this mailing list , I am happy to join this > community . > > I have a bug reported from our android phones which is caused by the system call . > It seems like kernel bugs from my view . Is this a unmodified Linux kernel from kernel.org? In other works, no (half broken) board support package from your hardware vendor? Did you try a more recent kernel? (At least 3.4.47). Maybe your problem is already known and fixed... > Crash in file arch\arm\kernel\ entry-common.S > > /***************************************************************/ > > ENTRY(vector_swi) > sub sp, sp, #S_FRAME_SIZE > stmia sp, {r0 - r12} @ Calling r0 - r12 > ARM( add r8, sp, #S_PC ) > ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr > THUMB( mov r8, sp ) > THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr > mrs r8, spsr @ called from non-FIQ mode, so ok. > str lr, [sp, #S_PC] @ Save calling PC > str r8, [sp, #S_PSR] @ Save CPSR > str r0, [sp, #S_OLD_R0] @ Save OLD_R0 > zero_fp > > /* > * Get the system call number. > */ > > #if defined(CONFIG_OABI_COMPAT) > > /* > * If we have CONFIG_OABI_COMPAT then we need to look at the swi > * value to determine if it is an EABI or an old ABI call. > */ > #ifdef CONFIG_ARM_THUMB > tst r8, #PSR_T_BIT > movne r10, #0 @ no thumb OABI emulation > ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction > #else > ldr r10, [lr, #-4] @ get SWI instruction > A710( and ip, r10, #0x0f000000 @ check for SWI ) > A710( teq ip, #0x0f000000 ) > A710( bne .Larm710bug ) > #endif > #ifdef CONFIG_CPU_ENDIAN_BE8 > rev r10, r10 @ little endian instruction > #endif > > /********************************************************************* > ******************************/ > > Then reason why it will crash when get SWI instruction is maybe This > page is clear to aged by kernel, But this MMU fault happpened in > kernel, So the kernel do_page_fault function will not clear this page > to young, So that will crash . > > It should poll this page to make it present or the fault should be > handled by fixup section , Anyway, this place should not crash by kernel . > > The kernel version I used is 3.4.0 > I have add the kernel log and the call stack recovered by trace32 > tools Pls have a look at it . > > > Thanks . > > > > Sony Mobile Communications > Tel: +86 10 5966 9819 > Phone: 18610323092 > Address: No.16 Guangshun South Street, Chaoyang, Beijing, P.R.C. > > sonymobile.com > > > -- Thanks, //richard ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-29 7:37 ` Wang, Yalin @ 2013-05-29 8:24 ` Wang, Yalin 2013-05-29 8:46 ` richard -rw- weinberger 2013-05-29 8:54 ` Mikael Pettersson 0 siblings, 2 replies; 36+ messages in thread From: Wang, Yalin @ 2013-05-29 8:24 UTC (permalink / raw) To: Wang, Yalin, 'richard -rw- weinberger' Cc: 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org' Hi I have download the latest linux kernel code 3.9.4 And Compare with 3.4.0 kernel . It seems there is no change for this part , So it will still happen . Does anyone know who is responsible for arm arch part kernel code ? Thanks -----Original Message----- From: Wang, Yalin Sent: Wednesday, May 29, 2013 3:38 PM To: 'richard -rw- weinberger' Cc: linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org Subject: RE: A bug about system call on ARM Hi Richard, Thanks for your reply , I will make a check for this . -----Original Message----- From: richard -rw- weinberger [mailto:richard.weinberger@gmail.com] Sent: Wednesday, May 29, 2013 3:35 PM To: Wang, Yalin Cc: linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org Subject: Re: A bug about system call on ARM Hi! On Wed, May 29, 2013 at 8:52 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: > Hi all, > > I am a new comer to this mailing list , I am happy to join this > community . > > I have a bug reported from our android phones which is caused by the system call . > It seems like kernel bugs from my view . Is this a unmodified Linux kernel from kernel.org? In other works, no (half broken) board support package from your hardware vendor? Did you try a more recent kernel? (At least 3.4.47). Maybe your problem is already known and fixed... > Crash in file arch\arm\kernel\ entry-common.S > > /***************************************************************/ > > ENTRY(vector_swi) > sub sp, sp, #S_FRAME_SIZE > stmia sp, {r0 - r12} @ Calling r0 - r12 > ARM( add r8, sp, #S_PC ) > ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr > THUMB( mov r8, sp ) > THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr > mrs r8, spsr @ called from non-FIQ mode, so ok. > str lr, [sp, #S_PC] @ Save calling PC > str r8, [sp, #S_PSR] @ Save CPSR > str r0, [sp, #S_OLD_R0] @ Save OLD_R0 > zero_fp > > /* > * Get the system call number. > */ > > #if defined(CONFIG_OABI_COMPAT) > > /* > * If we have CONFIG_OABI_COMPAT then we need to look at the swi > * value to determine if it is an EABI or an old ABI call. > */ > #ifdef CONFIG_ARM_THUMB > tst r8, #PSR_T_BIT > movne r10, #0 @ no thumb OABI emulation > ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction > #else > ldr r10, [lr, #-4] @ get SWI instruction > A710( and ip, r10, #0x0f000000 @ check for SWI ) > A710( teq ip, #0x0f000000 ) > A710( bne .Larm710bug ) > #endif > #ifdef CONFIG_CPU_ENDIAN_BE8 > rev r10, r10 @ little endian instruction > #endif > > /********************************************************************* > ******************************/ > > Then reason why it will crash when get SWI instruction is maybe This > page is clear to aged by kernel, But this MMU fault happpened in > kernel, So the kernel do_page_fault function will not clear this page > to young, So that will crash . > > It should poll this page to make it present or the fault should be > handled by fixup section , Anyway, this place should not crash by kernel . > > The kernel version I used is 3.4.0 > I have add the kernel log and the call stack recovered by trace32 > tools Pls have a look at it . > > > Thanks . > > > > Sony Mobile Communications > Tel: +86 10 5966 9819 > Phone: 18610323092 > Address: No.16 Guangshun South Street, Chaoyang, Beijing, P.R.C. > > sonymobile.com > > > -- Thanks, //richard ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-29 8:24 ` Wang, Yalin @ 2013-05-29 8:46 ` richard -rw- weinberger 2013-05-29 9:48 ` Will Deacon 2013-05-29 8:54 ` Mikael Pettersson 1 sibling, 1 reply; 36+ messages in thread From: richard -rw- weinberger @ 2013-05-29 8:46 UTC (permalink / raw) To: Wang, Yalin Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org On Wed, May 29, 2013 at 10:24 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: > Hi > > I have download the latest linux kernel code 3.9.4 > And Compare with 3.4.0 kernel . > > It seems there is no change for this part , > So it will still happen . > Does anyone know who is responsible for arm arch part kernel code ? See MAINTAINERS file. CC'ing linux-arm-kernel@lists.infradead.org > > Thanks > > > -----Original Message----- > From: Wang, Yalin > Sent: Wednesday, May 29, 2013 3:38 PM > To: 'richard -rw- weinberger' > Cc: linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org > Subject: RE: A bug about system call on ARM > > Hi Richard, > > Thanks for your reply , > I will make a check for this . > > > -----Original Message----- > From: richard -rw- weinberger [mailto:richard.weinberger@gmail.com] > Sent: Wednesday, May 29, 2013 3:35 PM > To: Wang, Yalin > Cc: linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org > Subject: Re: A bug about system call on ARM > > Hi! > > On Wed, May 29, 2013 at 8:52 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: >> Hi all, >> >> I am a new comer to this mailing list , I am happy to join this >> community . >> >> I have a bug reported from our android phones which is caused by the system call . >> It seems like kernel bugs from my view . > > Is this a unmodified Linux kernel from kernel.org? In other works, no (half broken) board support package from your hardware vendor? > Did you try a more recent kernel? (At least 3.4.47). > Maybe your problem is already known and fixed... > >> Crash in file arch\arm\kernel\ entry-common.S >> >> /***************************************************************/ >> >> ENTRY(vector_swi) >> sub sp, sp, #S_FRAME_SIZE >> stmia sp, {r0 - r12} @ Calling r0 - r12 >> ARM( add r8, sp, #S_PC ) >> ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr >> THUMB( mov r8, sp ) >> THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr >> mrs r8, spsr @ called from non-FIQ mode, so ok. >> str lr, [sp, #S_PC] @ Save calling PC >> str r8, [sp, #S_PSR] @ Save CPSR >> str r0, [sp, #S_OLD_R0] @ Save OLD_R0 >> zero_fp >> >> /* >> * Get the system call number. >> */ >> >> #if defined(CONFIG_OABI_COMPAT) >> >> /* >> * If we have CONFIG_OABI_COMPAT then we need to look at the swi >> * value to determine if it is an EABI or an old ABI call. >> */ >> #ifdef CONFIG_ARM_THUMB >> tst r8, #PSR_T_BIT >> movne r10, #0 @ no thumb OABI emulation >> ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction >> #else >> ldr r10, [lr, #-4] @ get SWI instruction >> A710( and ip, r10, #0x0f000000 @ check for SWI ) >> A710( teq ip, #0x0f000000 ) >> A710( bne .Larm710bug ) >> #endif >> #ifdef CONFIG_CPU_ENDIAN_BE8 >> rev r10, r10 @ little endian instruction >> #endif >> >> /********************************************************************* >> ******************************/ >> >> Then reason why it will crash when get SWI instruction is maybe This >> page is clear to aged by kernel, But this MMU fault happpened in >> kernel, So the kernel do_page_fault function will not clear this page >> to young, So that will crash . >> >> It should poll this page to make it present or the fault should be >> handled by fixup section , Anyway, this place should not crash by kernel . >> >> The kernel version I used is 3.4.0 >> I have add the kernel log and the call stack recovered by trace32 >> tools Pls have a look at it . >> >> >> Thanks . >> >> >> >> Sony Mobile Communications >> Tel: +86 10 5966 9819 >> Phone: 18610323092 >> Address: No.16 Guangshun South Street, Chaoyang, Beijing, P.R.C. >> >> sonymobile.com >> >> >> > > > > -- > Thanks, > //richard > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ -- Thanks, //richard ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-29 8:46 ` richard -rw- weinberger @ 2013-05-29 9:48 ` Will Deacon 2013-05-29 9:50 ` Wang, Yalin 0 siblings, 1 reply; 36+ messages in thread From: Will Deacon @ 2013-05-29 9:48 UTC (permalink / raw) To: richard -rw- weinberger Cc: Wang, Yalin, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Hello, On Wed, May 29, 2013 at 09:46:42AM +0100, richard -rw- weinberger wrote: > On Wed, May 29, 2013 at 10:24 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: > > I have download the latest linux kernel code 3.9.4 > > And Compare with 3.4.0 kernel . > > > > It seems there is no change for this part , > > So it will still happen . > > Does anyone know who is responsible for arm arch part kernel code ? > > See MAINTAINERS file. > CC'ing linux-arm-kernel@lists.infradead.org Cheers for adding us to CC. > >> #ifdef CONFIG_ARM_THUMB > >> tst r8, #PSR_T_BIT > >> movne r10, #0 @ no thumb OABI emulation > >> ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction Do you have the panic log please? Also, which SoC are you using and how are you reproducing this? > >> ldr r10, [lr, #-4] @ get SWI instruction > >> A710( and ip, r10, #0x0f000000 @ check for SWI ) > >> A710( teq ip, #0x0f000000 ) > >> A710( bne .Larm710bug ) > >> #endif > >> #ifdef CONFIG_CPU_ENDIAN_BE8 > >> rev r10, r10 @ little endian instruction > >> #endif > >> > >> /********************************************************************* > >> ******************************/ > >> > >> Then reason why it will crash when get SWI instruction is maybe This > >> page is clear to aged by kernel, But this MMU fault happpened in > >> kernel, So the kernel do_page_fault function will not clear this page > >> to young, So that will crash . Sounds like we might need some USER annotations around the instruction loads, but we should also rework the code so that we re-enable interrupts first. Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-29 9:48 ` Will Deacon @ 2013-05-29 9:50 ` Wang, Yalin 2013-05-30 1:41 ` Wang, Yalin 0 siblings, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-05-29 9:50 UTC (permalink / raw) To: 'Will Deacon', richard -rw- weinberger Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org [-- Attachment #1: Type: text/plain, Size: 2368 bytes --] Hi This is kernel.log and the stack which is recovered by Trace32 tools. Please have a look at it . Thanks -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Wednesday, May 29, 2013 5:48 PM To: richard -rw- weinberger Cc: Wang, Yalin; linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org; linux-arm-kernel@lists.infradead.org Subject: Re: A bug about system call on ARM Hello, On Wed, May 29, 2013 at 09:46:42AM +0100, richard -rw- weinberger wrote: > On Wed, May 29, 2013 at 10:24 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: > > I have download the latest linux kernel code 3.9.4 And Compare with > > 3.4.0 kernel . > > > > It seems there is no change for this part , So it will still happen > > . > > Does anyone know who is responsible for arm arch part kernel code ? > > See MAINTAINERS file. > CC'ing linux-arm-kernel@lists.infradead.org Cheers for adding us to CC. > >> #ifdef CONFIG_ARM_THUMB > >> tst r8, #PSR_T_BIT > >> movne r10, #0 @ no thumb OABI emulation > >> ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction Do you have the panic log please? Also, which SoC are you using and how are you reproducing this? > >> ldr r10, [lr, #-4] @ get SWI instruction > >> A710( and ip, r10, #0x0f000000 @ check for SWI ) > >> A710( teq ip, #0x0f000000 ) > >> A710( bne .Larm710bug ) > >> #endif > >> #ifdef CONFIG_CPU_ENDIAN_BE8 > >> rev r10, r10 @ little endian instruction > >> #endif > >> > >> /****************************************************************** > >> *** > >> ******************************/ > >> > >> Then reason why it will crash when get SWI instruction is maybe > >> This page is clear to aged by kernel, But this MMU fault happpened > >> in kernel, So the kernel do_page_fault function will not clear this > >> page to young, So that will crash . Sounds like we might need some USER annotations around the instruction loads, but we should also rework the code so that we re-enable interrupts first. Will [-- Attachment #2: kernel.log --] [-- Type: application/octet-stream, Size: 131072 bytes --] _size_pst: can not get dst interface! <3>[43707.009975] tcp_get_mem_size_pst: can not get dst interface! <3>[43710.929126] tcp_get_mem_size_pst: can not get dst interface! <3>[43710.932850] tcp_get_mem_size_pst: can not get dst interface! <3>[43711.439121] tcp_get_mem_size_pst: can not get dst interface! <3>[43711.449529] tcp_get_mem_size_pst: can not get dst interface! <3>[43711.466010] qtaguid: iface_stat: stat_update() lo not found <3>[43711.965659] tcp_get_mem_size_pst: can not get dst interface! <3>[43711.975212] tcp_get_mem_size_pst: can not get dst interface! <3>[43711.990808] qtaguid: iface_stat: stat_update() lo not found <3>[43711.993158] tcp_get_mem_size_pst: can not get dst interface! <3>[43712.004847] tcp_get_mem_size_pst: can not get dst interface! <3>[43712.025876] qtaguid: iface_stat: stat_update() lo not found <3>[43715.941395] tcp_get_mem_size_pst: can not get dst interface! <3>[43715.950918] tcp_get_mem_size_pst: can not get dst interface! <3>[43715.966575] qtaguid: iface_stat: stat_update() lo not found <3>[43716.466040] tcp_get_mem_size_pst: can not get dst interface! <3>[43716.476417] tcp_get_mem_size_pst: can not get dst interface! <3>[43716.511119] qtaguid: iface_stat: stat_update() lo not found <3>[43717.011226] tcp_get_mem_size_pst: can not get dst interface! <3>[43717.020046] tcp_get_mem_size_pst: can not get dst interface! <3>[43717.036955] tcp_get_mem_size_pst: can not get dst interface! <3>[43717.042387] qtaguid: iface_stat: stat_update() lo not found <3>[43717.051848] tcp_get_mem_size_pst: can not get dst interface! <3>[43717.072084] tcp_get_mem_size_pst: can not get dst interface! <3>[43717.078096] qtaguid: iface_stat: stat_update() lo not found <3>[43717.089938] tcp_get_mem_size_pst: can not get dst interface! <3>[43717.203870] tcp_get_mem_size_pst: can not get dst interface! <3>[43717.206831] tcp_get_mem_size_pst: can not get dst interface! <6>[43720.527722] SLIM_CL: skip reconfig sequence <3>[43722.380461] tcp_get_mem_size_pst: can not get dst interface! <3>[43722.394684] tcp_get_mem_size_pst: can not get dst interface! <3>[43723.404817] tcp_get_mem_size_pst: can not get dst interface! <3>[43723.415041] tcp_get_mem_size_pst: can not get dst interface! <3>[43723.485574] tcp_get_mem_size_pst: can not get dst interface! <3>[43723.507335] tcp_get_mem_size_pst: can not get dst interface! <3>[43724.023159] tcp_get_mem_size_pst: can not get dst interface! <3>[43724.029324] tcp_get_mem_size_pst: can not get dst interface! <3>[43724.042021] qtaguid: iface_stat: stat_update() lo not found <6>[43726.733674] SLIM_CL: skip reconfig sequence <3>[43727.962363] tcp_get_mem_size_pst: can not get dst interface! <3>[43727.974327] tcp_get_mem_size_pst: can not get dst interface! <3>[43727.990289] qtaguid: iface_stat: stat_update() lo not found <3>[43728.490304] tcp_get_mem_size_pst: can not get dst interface! <3>[43728.500040] tcp_get_mem_size_pst: can not get dst interface! <3>[43728.517345] qtaguid: iface_stat: stat_update() lo not found <3>[43729.016903] tcp_get_mem_size_pst: can not get dst interface! <3>[43729.026242] tcp_get_mem_size_pst: can not get dst interface! <3>[43729.043028] tcp_get_mem_size_pst: can not get dst interface! <3>[43729.048735] qtaguid: iface_stat: stat_update() lo not found <3>[43729.056549] tcp_get_mem_size_pst: can not get dst interface! <3>[43729.078035] qtaguid: iface_stat: stat_update() lo not found <3>[43732.992700] tcp_get_mem_size_pst: can not get dst interface! <3>[43733.002070] tcp_get_mem_size_pst: can not get dst interface! <3>[43733.520489] tcp_get_mem_size_pst: can not get dst interface! <3>[43733.530622] tcp_get_mem_size_pst: can not get dst interface! <3>[43733.546370] qtaguid: iface_stat: stat_update() lo not found <3>[43734.046324] tcp_get_mem_size_pst: can not get dst interface! <3>[43734.056945] tcp_get_mem_size_pst: can not get dst interface! <3>[43734.073274] tcp_get_mem_size_pst: can not get dst interface! <3>[43734.079103] qtaguid: iface_stat: stat_update() lo not found <3>[43734.089511] tcp_get_mem_size_pst: can not get dst interface! <3>[43734.108800] qtaguid: iface_stat: stat_update() lo not found <3>[43738.025326] tcp_get_mem_size_pst: can not get dst interface! <3>[43738.035581] tcp_get_mem_size_pst: can not get dst interface! <3>[43738.051452] qtaguid: iface_stat: stat_update() lo not found <3>[43738.551345] tcp_get_mem_size_pst: can not get dst interface! <3>[43738.561020] tcp_get_mem_size_pst: can not get dst interface! <3>[43738.577135] qtaguid: iface_stat: stat_update() lo not found <3>[43739.077241] tcp_get_mem_size_pst: can not get dst interface! <3>[43739.088229] tcp_get_mem_size_pst: can not get dst interface! <3>[43739.103916] tcp_get_mem_size_pst: can not get dst interface! <3>[43739.110142] qtaguid: iface_stat: stat_update() lo not found <3>[43739.119634] tcp_get_mem_size_pst: can not get dst interface! <3>[43743.055145] tcp_get_mem_size_pst: can not get dst interface! <3>[43743.064911] tcp_get_mem_size_pst: can not get dst interface! <3>[43743.082094] qtaguid: iface_stat: stat_update() lo not found <3>[43743.581774] tcp_get_mem_size_pst: can not get dst interface! <3>[43743.593310] tcp_get_mem_size_pst: can not get dst interface! <3>[43743.612447] qtaguid: iface_stat: stat_update() lo not found <3>[43744.112279] tcp_get_mem_size_pst: can not get dst interface! <3>[43744.121527] tcp_get_mem_size_pst: can not get dst interface! <3>[43744.136726] tcp_get_mem_size_pst: can not get dst interface! <3>[43744.140876] qtaguid: iface_stat: stat_update() lo not found <3>[43744.149544] tcp_get_mem_size_pst: can not get dst interface! <3>[43748.069764] tcp_get_mem_size_pst: can not get dst interface! <3>[43748.079714] tcp_get_mem_size_pst: can not get dst interface! <3>[43748.094058] qtaguid: iface_stat: stat_update() lo not found <3>[43748.594134] tcp_get_mem_size_pst: can not get dst interface! <3>[43748.603657] tcp_get_mem_size_pst: can not get dst interface! <3>[43748.621450] qtaguid: iface_stat: stat_update() lo not found <3>[43749.121526] tcp_get_mem_size_pst: can not get dst interface! <3>[43749.131598] tcp_get_mem_size_pst: can not get dst interface! <3>[43749.171549] tcp_get_mem_size_pst: can not get dst interface! <3>[43749.176646] qtaguid: iface_stat: stat_update() lo not found <3>[43749.186016] tcp_get_mem_size_pst: can not get dst interface! <3>[43749.206190] tcp_get_mem_size_pst: can not get dst interface! <3>[43749.209791] tcp_get_mem_size_pst: can not get dst interface! <3>[43749.319176] tcp_get_mem_size_pst: can not get dst interface! <3>[43749.322351] tcp_get_mem_size_pst: can not get dst interface! <6>[43749.951528] msm_enqueue: queue eventdata new max is 1 <6>[43750.020687] msm_enqueue: queue control new max is 1 <6>[43750.031644] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[43750.037626] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <6>[43750.115636] vfe32_proc_general: cmdID = RESET <6>[43750.116643] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40 <6>[43750.126501] configure_pingpong_buffers Configure ping/pong address for 25 <6>[43750.126623] vfe32_proc_general: cmdID = START <6>[43750.462500] msm_rotator msm_rotator: scale: 0, rot: 4, src: 1280x720, dst: 720x1280, s_dst: 720x1280, sfmt: 6, dfmt: 6 => fyuv: 1, pl: 3 <6>[43751.238481] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <3>[43752.509685] msm_mctl_reserve_free_buf: stream is turned off <6>[43752.578111] SLIM_CL: skip reconfig sequence <6>[43752.629111] vfe32_proc_general: cmdID = STOP <6>[43752.644279] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[43752.645134] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <3>[43752.869184] msm_release_ion_client Calling ion_client_destroy <6>[43754.009059] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <3>[43754.486916] tcp_get_mem_size_pst: can not get dst interface! <3>[43754.504008] tcp_get_mem_size_pst: can not get dst interface! <3>[43755.513866] tcp_get_mem_size_pst: can not get dst interface! <3>[43755.523541] tcp_get_mem_size_pst: can not get dst interface! <3>[43755.596179] tcp_get_mem_size_pst: can not get dst interface! <3>[43755.609364] tcp_get_mem_size_pst: can not get dst interface! <3>[43756.122778] tcp_get_mem_size_pst: can not get dst interface! <3>[43756.130896] tcp_get_mem_size_pst: can not get dst interface! <6>[43758.843425] SLIM_CL: skip reconfig sequence <3>[43760.053558] tcp_get_mem_size_pst: can not get dst interface! <3>[43760.063507] tcp_get_mem_size_pst: can not get dst interface! <3>[43760.080080] qtaguid: iface_stat: stat_update() lo not found <3>[43760.589068] tcp_get_mem_size_pst: can not get dst interface! <3>[43760.600269] tcp_get_mem_size_pst: can not get dst interface! <3>[43761.115941] tcp_get_mem_size_pst: can not get dst interface! <3>[43761.126501] tcp_get_mem_size_pst: can not get dst interface! <3>[43761.149422] qtaguid: iface_stat: stat_update() lo not found <3>[43761.152718] tcp_get_mem_size_pst: can not get dst interface! <3>[43761.163919] tcp_get_mem_size_pst: can not get dst interface! <3>[43761.184429] qtaguid: iface_stat: stat_update() lo not found <3>[43765.101078] tcp_get_mem_size_pst: can not get dst interface! <3>[43765.112920] tcp_get_mem_size_pst: can not get dst interface! <3>[43765.128882] qtaguid: iface_stat: stat_update() lo not found <3>[43765.628928] tcp_get_mem_size_pst: can not get dst interface! <3>[43765.640037] tcp_get_mem_size_pst: can not get dst interface! <3>[43765.656793] qtaguid: iface_stat: stat_update() lo not found <3>[43766.156564] tcp_get_mem_size_pst: can not get dst interface! <3>[43766.166452] tcp_get_mem_size_pst: can not get dst interface! <3>[43766.183544] tcp_get_mem_size_pst: can not get dst interface! <3>[43766.190014] qtaguid: iface_stat: stat_update() lo not found <3>[43766.201032] tcp_get_mem_size_pst: can not get dst interface! <3>[43766.222274] qtaguid: iface_stat: stat_update() lo not found <3>[43770.132148] tcp_get_mem_size_pst: can not get dst interface! <3>[43770.144203] tcp_get_mem_size_pst: can not get dst interface! <3>[43770.162088] qtaguid: iface_stat: stat_update() lo not found <3>[43770.661920] tcp_get_mem_size_pst: can not get dst interface! <3>[43770.671839] tcp_get_mem_size_pst: can not get dst interface! <3>[43770.687161] qtaguid: iface_stat: stat_update() lo not found <3>[43771.186749] tcp_get_mem_size_pst: can not get dst interface! <3>[43771.194104] tcp_get_mem_size_pst: can not get dst interface! <3>[43771.208540] tcp_get_mem_size_pst: can not get dst interface! <3>[43771.211531] tcp_get_mem_size_pst: can not get dst interface! <3>[43775.127112] tcp_get_mem_size_pst: can not get dst interface! <3>[43775.138435] tcp_get_mem_size_pst: can not get dst interface! <3>[43775.154458] qtaguid: iface_stat: stat_update() lo not found <3>[43775.654443] tcp_get_mem_size_pst: can not get dst interface! <3>[43775.669733] tcp_get_mem_size_pst: can not get dst interface! <3>[43776.180950] tcp_get_mem_size_pst: can not get dst interface! <3>[43776.192395] tcp_get_mem_size_pst: can not get dst interface! <3>[43776.197797] tcp_get_mem_size_pst: can not get dst interface! <3>[43776.200941] tcp_get_mem_size_pst: can not get dst interface! <3>[43780.111821] tcp_get_mem_size_pst: can not get dst interface! <3>[43780.121099] tcp_get_mem_size_pst: can not get dst interface! <3>[43780.135657] qtaguid: iface_stat: stat_update() lo not found <3>[43780.635734] tcp_get_mem_size_pst: can not get dst interface! <3>[43780.644676] tcp_get_mem_size_pst: can not get dst interface! <3>[43780.661768] qtaguid: iface_stat: stat_update() lo not found <3>[43781.161752] tcp_get_mem_size_pst: can not get dst interface! <3>[43781.170664] tcp_get_mem_size_pst: can not get dst interface! <3>[43781.186687] tcp_get_mem_size_pst: can not get dst interface! <3>[43781.193219] qtaguid: iface_stat: stat_update() lo not found <3>[43781.201765] tcp_get_mem_size_pst: can not get dst interface! <3>[43781.221084] tcp_get_mem_size_pst: can not get dst interface! <3>[43781.229538] qtaguid: iface_stat: stat_update() lo not found <3>[43781.240586] tcp_get_mem_size_pst: can not get dst interface! <3>[43781.347133] tcp_get_mem_size_pst: can not get dst interface! <3>[43781.349910] tcp_get_mem_size_pst: can not get dst interface! <6>[43784.639366] SLIM_CL: skip reconfig sequence <3>[43786.540876] tcp_get_mem_size_pst: can not get dst interface! <3>[43786.555618] tcp_get_mem_size_pst: can not get dst interface! <3>[43787.538557] tcp_get_mem_size_pst: can not get dst interface! <3>[43787.548720] tcp_get_mem_size_pst: can not get dst interface! <3>[43787.603779] tcp_get_mem_size_pst: can not get dst interface! <3>[43787.619344] tcp_get_mem_size_pst: can not get dst interface! <3>[43788.127570] tcp_get_mem_size_pst: can not get dst interface! <3>[43788.132209] tcp_get_mem_size_pst: can not get dst interface! <3>[43788.144569] qtaguid: iface_stat: stat_update() lo not found <6>[43790.816445] SLIM_CL: skip reconfig sequence <3>[43792.062103] tcp_get_mem_size_pst: can not get dst interface! <3>[43792.073060] tcp_get_mem_size_pst: can not get dst interface! <3>[43792.089663] qtaguid: iface_stat: stat_update() lo not found <3>[43792.609059] tcp_get_mem_size_pst: can not get dst interface! <3>[43792.618551] tcp_get_mem_size_pst: can not get dst interface! <3>[43792.651024] qtaguid: iface_stat: stat_update() lo not found <3>[43793.152199] tcp_get_mem_size_pst: can not get dst interface! <3>[43793.161691] tcp_get_mem_size_pst: can not get dst interface! <3>[43793.177959] tcp_get_mem_size_pst: can not get dst interface! <3>[43793.182933] qtaguid: iface_stat: stat_update() lo not found <3>[43793.191540] tcp_get_mem_size_pst: can not get dst interface! <3>[43797.109837] tcp_get_mem_size_pst: can not get dst interface! <3>[43797.119207] tcp_get_mem_size_pst: can not get dst interface! <3>[43797.134131] qtaguid: iface_stat: stat_update() lo not found <3>[43797.634147] tcp_get_mem_size_pst: can not get dst interface! <3>[43797.644066] tcp_get_mem_size_pst: can not get dst interface! <3>[43797.661005] qtaguid: iface_stat: stat_update() lo not found <3>[43798.160959] tcp_get_mem_size_pst: can not get dst interface! <3>[43798.171580] tcp_get_mem_size_pst: can not get dst interface! <3>[43798.190564] tcp_get_mem_size_pst: can not get dst interface! <3>[43798.195599] qtaguid: iface_stat: stat_update() lo not found <3>[43798.204695] tcp_get_mem_size_pst: can not get dst interface! <3>[43798.224899] qtaguid: iface_stat: stat_update() lo not found <3>[43802.140266] tcp_get_mem_size_pst: can not get dst interface! <3>[43802.150918] tcp_get_mem_size_pst: can not get dst interface! <3>[43802.166178] qtaguid: iface_stat: stat_update() lo not found <3>[43802.666132] tcp_get_mem_size_pst: can not get dst interface! <3>[43802.676570] tcp_get_mem_size_pst: can not get dst interface! <3>[43802.692990] qtaguid: iface_stat: stat_update() lo not found <3>[43803.192944] tcp_get_mem_size_pst: can not get dst interface! <3>[43803.202955] tcp_get_mem_size_pst: can not get dst interface! <3>[43803.220138] tcp_get_mem_size_pst: can not get dst interface! <3>[43803.225815] qtaguid: iface_stat: stat_update() lo not found <3>[43803.234666] tcp_get_mem_size_pst: can not get dst interface! <3>[43803.255999] qtaguid: iface_stat: stat_update() lo not found <3>[43807.171275] tcp_get_mem_size_pst: can not get dst interface! <3>[43807.182384] tcp_get_mem_size_pst: can not get dst interface! <3>[43807.197309] qtaguid: iface_stat: stat_update() lo not found <3>[43807.697293] tcp_get_mem_size_pst: can not get dst interface! <3>[43807.706083] tcp_get_mem_size_pst: can not get dst interface! <3>[43807.721649] qtaguid: iface_stat: stat_update() lo not found <3>[43808.221633] tcp_get_mem_size_pst: can not get dst interface! <3>[43808.230301] tcp_get_mem_size_pst: can not get dst interface! <3>[43808.245744] tcp_get_mem_size_pst: can not get dst interface! <3>[43808.251238] qtaguid: iface_stat: stat_update() lo not found <3>[43808.261584] tcp_get_mem_size_pst: can not get dst interface! <3>[43808.281881] qtaguid: iface_stat: stat_update() lo not found <3>[43812.202924] tcp_get_mem_size_pst: can not get dst interface! <3>[43812.213301] tcp_get_mem_size_pst: can not get dst interface! <3>[43812.229294] qtaguid: iface_stat: stat_update() lo not found <3>[43812.729157] tcp_get_mem_size_pst: can not get dst interface! <3>[43812.737580] tcp_get_mem_size_pst: can not get dst interface! <3>[43812.752261] qtaguid: iface_stat: stat_update() lo not found <3>[43813.252184] tcp_get_mem_size_pst: can not get dst interface! <3>[43813.262927] tcp_get_mem_size_pst: can not get dst interface! <3>[43813.279378] qtaguid: iface_stat: stat_update() lo not found <3>[43813.283803] tcp_get_mem_size_pst: can not get dst interface! <3>[43813.292318] tcp_get_mem_size_pst: can not get dst interface! <3>[43813.311485] tcp_get_mem_size_pst: can not get dst interface! <3>[43813.317376] qtaguid: iface_stat: stat_update() lo not found <3>[43813.330377] tcp_get_mem_size_pst: can not get dst interface! <3>[43813.436802] tcp_get_mem_size_pst: can not get dst interface! <3>[43813.439457] tcp_get_mem_size_pst: can not get dst interface! <6>[43816.725525] SLIM_CL: skip reconfig sequence <3>[43818.606312] tcp_get_mem_size_pst: can not get dst interface! <3>[43818.647606] tcp_get_mem_size_pst: can not get dst interface! <3>[43819.612782] tcp_get_mem_size_pst: can not get dst interface! <3>[43819.622854] tcp_get_mem_size_pst: can not get dst interface! <3>[43819.687344] tcp_get_mem_size_pst: can not get dst interface! <3>[43819.703367] tcp_get_mem_size_pst: can not get dst interface! <3>[43820.218795] tcp_get_mem_size_pst: can not get dst interface! <3>[43820.224899] tcp_get_mem_size_pst: can not get dst interface! <6>[43822.924243] SLIM_CL: skip reconfig sequence <3>[43824.154183] tcp_get_mem_size_pst: can not get dst interface! <3>[43824.165232] tcp_get_mem_size_pst: can not get dst interface! <3>[43824.180553] qtaguid: iface_stat: stat_update() lo not found <3>[43824.688961] tcp_get_mem_size_pst: can not get dst interface! <3>[43824.699582] tcp_get_mem_size_pst: can not get dst interface! <3>[43824.727386] qtaguid: iface_stat: stat_update() lo not found <3>[43825.221359] tcp_get_mem_size_pst: can not get dst interface! <3>[43825.231491] tcp_get_mem_size_pst: can not get dst interface! <3>[43825.247728] tcp_get_mem_size_pst: can not get dst interface! <3>[43825.251818] qtaguid: iface_stat: stat_update() lo not found <3>[43825.264362] tcp_get_mem_size_pst: can not get dst interface! <3>[43825.284261] qtaguid: iface_stat: stat_update() lo not found <3>[43829.201002] tcp_get_mem_size_pst: can not get dst interface! <3>[43829.212233] tcp_get_mem_size_pst: can not get dst interface! <3>[43829.729614] tcp_get_mem_size_pst: can not get dst interface! <3>[43829.738954] tcp_get_mem_size_pst: can not get dst interface! <3>[43829.753756] qtaguid: iface_stat: stat_update() lo not found <3>[43830.253069] tcp_get_mem_size_pst: can not get dst interface! <3>[43830.261737] tcp_get_mem_size_pst: can not get dst interface! <3>[43830.279042] qtaguid: iface_stat: stat_update() lo not found <3>[43830.281179] tcp_get_mem_size_pst: can not get dst interface! <3>[43830.292441] tcp_get_mem_size_pst: can not get dst interface! <3>[43830.310783] qtaguid: iface_stat: stat_update() lo not found <3>[43834.231919] tcp_get_mem_size_pst: can not get dst interface! <3>[43834.241533] tcp_get_mem_size_pst: can not get dst interface! <3>[43834.256335] qtaguid: iface_stat: stat_update() lo not found <3>[43834.756320] tcp_get_mem_size_pst: can not get dst interface! <3>[43834.766819] tcp_get_mem_size_pst: can not get dst interface! <3>[43834.782903] qtaguid: iface_stat: stat_update() lo not found <3>[43835.282857] tcp_get_mem_size_pst: can not get dst interface! <3>[43835.292318] tcp_get_mem_size_pst: can not get dst interface! <3>[43835.307548] tcp_get_mem_size_pst: can not get dst interface! <3>[43835.313347] qtaguid: iface_stat: stat_update() lo not found <3>[43835.322900] tcp_get_mem_size_pst: can not get dst interface! <3>[43835.341761] qtaguid: iface_stat: stat_update() lo not found <3>[43839.262256] tcp_get_mem_size_pst: can not get dst interface! <3>[43839.273823] tcp_get_mem_size_pst: can not get dst interface! <3>[43839.289633] qtaguid: iface_stat: stat_update() lo not found <3>[43839.789709] tcp_get_mem_size_pst: can not get dst interface! <3>[43839.798529] tcp_get_mem_size_pst: can not get dst interface! <3>[43839.813149] qtaguid: iface_stat: stat_update() lo not found <3>[43840.313164] tcp_get_mem_size_pst: can not get dst interface! <3>[43840.321984] tcp_get_mem_size_pst: can not get dst interface! <3>[43840.337244] tcp_get_mem_size_pst: can not get dst interface! <3>[43840.339839] qtaguid: iface_stat: stat_update() lo not found <3>[43840.350887] tcp_get_mem_size_pst: can not get dst interface! <3>[43844.277150] tcp_get_mem_size_pst: can not get dst interface! <3>[43844.286733] tcp_get_mem_size_pst: can not get dst interface! <3>[43844.301108] qtaguid: iface_stat: stat_update() lo not found <3>[43844.801215] tcp_get_mem_size_pst: can not get dst interface! <3>[43844.810371] tcp_get_mem_size_pst: can not get dst interface! <3>[43844.825021] qtaguid: iface_stat: stat_update() lo not found <3>[43845.325128] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.333552] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.349880] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.355068] qtaguid: iface_stat: stat_update() lo not found <3>[43845.363065] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.381652] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.390258] qtaguid: iface_stat: stat_update() lo not found <3>[43845.392792] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.498819] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.501658] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.707396] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.728668] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.731018] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.753970] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.756564] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.773289] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.778264] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.787481] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.791143] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.796118] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.798194] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.805702] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.840586] qtaguid: iface_stat: stat_update() lo not found <3>[43845.963309] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.969230] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.971610] tcp_get_mem_size_pst: can not get dst interface! <3>[43845.974052] tcp_get_mem_size_pst: can not get dst interface! <3>[43846.081118] tcp_get_mem_size_pst: can not get dst interface! <3>[43846.089327] tcp_get_mem_size_pst: can not get dst interface! <3>[43846.094821] tcp_get_mem_size_pst: can not get dst interface! <3>[43846.100803] tcp_get_mem_size_pst: can not get dst interface! <3>[43846.268452] tcp_get_mem_size_pst: can not get dst interface! <3>[43846.271687] tcp_get_mem_size_pst: can not get dst interface! <3>[43848.209730] tcp_get_mem_size_pst: can not get dst interface! <3>[43848.219405] tcp_get_mem_size_pst: can not get dst interface! <3>[43849.254412] tcp_get_mem_size_pst: can not get dst interface! <3>[43849.264545] tcp_get_mem_size_pst: can not get dst interface! <3>[43849.283712] tcp_get_mem_size_pst: can not get dst interface! <3>[43849.296988] tcp_get_mem_size_pst: can not get dst interface! <3>[43850.314018] tcp_get_mem_size_pst: can not get dst interface! <3>[43850.323327] tcp_get_mem_size_pst: can not get dst interface! <3>[43850.341975] qtaguid: iface_stat: stat_update() lo not found <3>[43850.841563] tcp_get_mem_size_pst: can not get dst interface! <3>[43850.851360] tcp_get_mem_size_pst: can not get dst interface! <3>[43850.869367] qtaguid: iface_stat: stat_update() lo not found <3>[43851.368406] tcp_get_mem_size_pst: can not get dst interface! <3>[43851.377531] tcp_get_mem_size_pst: can not get dst interface! <3>[43851.396362] qtaguid: iface_stat: stat_update() lo not found <6>[43851.433750] SLIM_CL: skip reconfig sequence <3>[43851.896164] tcp_get_mem_size_pst: can not get dst interface! <3>[43851.908311] tcp_get_mem_size_pst: can not get dst interface! <3>[43851.924456] tcp_get_mem_size_pst: can not get dst interface! <3>[43851.927203] qtaguid: iface_stat: stat_update() lo not found <3>[43851.937092] tcp_get_mem_size_pst: can not get dst interface! <3>[43851.952871] qtaguid: iface_stat: stat_update() lo not found <3>[43855.641716] tcp_get_mem_size_pst: can not get dst interface! <3>[43855.650292] tcp_get_mem_size_pst: can not get dst interface! <3>[43855.669184] tcp_get_mem_size_pst: can not get dst interface! <3>[43855.682277] tcp_get_mem_size_pst: can not get dst interface! <3>[43855.700162] tcp_get_mem_size_pst: can not get dst interface! <3>[43855.713072] tcp_get_mem_size_pst: can not get dst interface! <3>[43855.823556] tcp_get_mem_size_pst: can not get dst interface! <3>[43855.826059] tcp_get_mem_size_pst: can not get dst interface! <3>[43857.836008] tcp_get_mem_size_pst: can not get dst interface! <3>[43857.848644] tcp_get_mem_size_pst: can not get dst interface! <3>[43858.363370] tcp_get_mem_size_pst: can not get dst interface! <3>[43858.375883] tcp_get_mem_size_pst: can not get dst interface! <3>[43858.891464] tcp_get_mem_size_pst: can not get dst interface! <3>[43858.909288] tcp_get_mem_size_pst: can not get dst interface! <6>[43859.110417] SLIM_CL: skip reconfig sequence <3>[43859.423709] tcp_get_mem_size_pst: can not get dst interface! <3>[43859.435032] tcp_get_mem_size_pst: can not get dst interface! <3>[43859.947835] tcp_get_mem_size_pst: can not get dst interface! <3>[43859.970176] tcp_get_mem_size_pst: can not get dst interface! <3>[43859.992547] tcp_get_mem_size_pst: can not get dst interface! <3>[43860.015255] tcp_get_mem_size_pst: can not get dst interface! <3>[43860.033506] tcp_get_mem_size_pst: can not get dst interface! <3>[43860.120214] qtaguid: iface_stat: stat_update() lo not found <3>[43860.128577] tcp_get_mem_size_pst: can not get dst interface! <3>[43860.634788] tcp_get_mem_size_pst: can not get dst interface! <3>[43860.646782] tcp_get_mem_size_pst: can not get dst interface! <3>[43861.160501] tcp_get_mem_size_pst: can not get dst interface! <3>[43861.197949] tcp_get_mem_size_pst: can not get dst interface! <3>[43861.213362] tcp_get_mem_size_pst: can not get dst interface! <3>[43861.226578] tcp_get_mem_size_pst: can not get dst interface! <3>[43866.235398] tcp_get_mem_size_pst: can not get dst interface! <3>[43866.238938] tcp_get_mem_size_pst: can not get dst interface! <3>[43867.183788] tcp_get_mem_size_pst: can not get dst interface! <3>[43867.191815] tcp_get_mem_size_pst: can not get dst interface! <3>[43867.251787] tcp_get_mem_size_pst: can not get dst interface! <3>[43867.280385] tcp_get_mem_size_pst: can not get dst interface! <3>[43867.789434] tcp_get_mem_size_pst: can not get dst interface! <3>[43867.792395] tcp_get_mem_size_pst: can not get dst interface! <6>[43870.484933] SLIM_CL: skip reconfig sequence <3>[43871.706297] tcp_get_mem_size_pst: can not get dst interface! <3>[43871.719543] tcp_get_mem_size_pst: can not get dst interface! <3>[43871.735596] qtaguid: iface_stat: stat_update() lo not found <3>[43872.239549] tcp_get_mem_size_pst: can not get dst interface! <3>[43872.269367] tcp_get_mem_size_pst: can not get dst interface! <3>[43872.784582] tcp_get_mem_size_pst: can not get dst interface! <3>[43872.796790] tcp_get_mem_size_pst: can not get dst interface! <3>[43872.815590] qtaguid: iface_stat: stat_update() lo not found <3>[43872.822030] tcp_get_mem_size_pst: can not get dst interface! <3>[43872.834238] tcp_get_mem_size_pst: can not get dst interface! <3>[43876.787420] tcp_get_mem_size_pst: can not get dst interface! <3>[43876.800208] tcp_get_mem_size_pst: can not get dst interface! <3>[43876.819863] qtaguid: iface_stat: stat_update() lo not found <3>[43877.320275] tcp_get_mem_size_pst: can not get dst interface! <3>[43877.332422] tcp_get_mem_size_pst: can not get dst interface! <3>[43877.350063] qtaguid: iface_stat: stat_update() lo not found <3>[43877.850017] tcp_get_mem_size_pst: can not get dst interface! <3>[43877.861371] tcp_get_mem_size_pst: can not get dst interface! <3>[43877.881789] qtaguid: iface_stat: stat_update() lo not found <3>[43877.886703] tcp_get_mem_size_pst: can not get dst interface! <3>[43877.903092] tcp_get_mem_size_pst: can not get dst interface! <3>[43877.927142] qtaguid: iface_stat: stat_update() lo not found <3>[43881.834788] tcp_get_mem_size_pst: can not get dst interface! <3>[43881.848156] tcp_get_mem_size_pst: can not get dst interface! <3>[43881.867048] qtaguid: iface_stat: stat_update() lo not found <3>[43882.376982] tcp_get_mem_size_pst: can not get dst interface! <3>[43882.389709] tcp_get_mem_size_pst: can not get dst interface! <3>[43882.406190] qtaguid: iface_stat: stat_update() lo not found <3>[43882.906083] tcp_get_mem_size_pst: can not get dst interface! <3>[43882.921801] tcp_get_mem_size_pst: can not get dst interface! <3>[43882.940693] tcp_get_mem_size_pst: can not get dst interface! <3>[43882.945515] qtaguid: iface_stat: stat_update() lo not found <3>[43882.957907] tcp_get_mem_size_pst: can not get dst interface! <3>[43886.884414] tcp_get_mem_size_pst: can not get dst interface! <3>[43886.897599] tcp_get_mem_size_pst: can not get dst interface! <3>[43886.921465] qtaguid: iface_stat: stat_update() lo not found <3>[43887.425784] tcp_get_mem_size_pst: can not get dst interface! <3>[43887.438358] tcp_get_mem_size_pst: can not get dst interface! <3>[43887.954733] tcp_get_mem_size_pst: can not get dst interface! <3>[43887.967338] tcp_get_mem_size_pst: can not get dst interface! <3>[43887.984582] qtaguid: iface_stat: stat_update() lo not found <3>[43887.991449] tcp_get_mem_size_pst: can not get dst interface! <3>[43888.004206] tcp_get_mem_size_pst: can not get dst interface! <3>[43891.930866] tcp_get_mem_size_pst: can not get dst interface! <3>[43891.942860] tcp_get_mem_size_pst: can not get dst interface! <3>[43891.958914] qtaguid: iface_stat: stat_update() lo not found <3>[43892.459692] tcp_get_mem_size_pst: can not get dst interface! <3>[43892.471473] tcp_get_mem_size_pst: can not get dst interface! <3>[43892.487313] qtaguid: iface_stat: stat_update() lo not found <3>[43892.987573] tcp_get_mem_size_pst: can not get dst interface! <3>[43892.999781] tcp_get_mem_size_pst: can not get dst interface! <3>[43893.018459] qtaguid: iface_stat: stat_update() lo not found <3>[43893.023953] tcp_get_mem_size_pst: can not get dst interface! <3>[43893.035642] tcp_get_mem_size_pst: can not get dst interface! <3>[43893.046477] tcp_get_mem_size_pst: can not get dst interface! <3>[43893.050658] tcp_get_mem_size_pst: can not get dst interface! <3>[43893.159952] tcp_get_mem_size_pst: can not get dst interface! <3>[43893.162943] tcp_get_mem_size_pst: can not get dst interface! <6>[43896.446294] SLIM_CL: skip reconfig sequence <3>[43898.294028] tcp_get_mem_size_pst: can not get dst interface! <3>[43898.331354] tcp_get_mem_size_pst: can not get dst interface! <3>[43899.309074] tcp_get_mem_size_pst: can not get dst interface! <3>[43899.317132] tcp_get_mem_size_pst: can not get dst interface! <3>[43899.385467] tcp_get_mem_size_pst: can not get dst interface! <3>[43899.393341] tcp_get_mem_size_pst: can not get dst interface! <3>[43899.910539] tcp_get_mem_size_pst: can not get dst interface! <3>[43899.918413] tcp_get_mem_size_pst: can not get dst interface! <6>[43902.613484] SLIM_CL: skip reconfig sequence <3>[43903.863690] tcp_get_mem_size_pst: can not get dst interface! <3>[43903.874067] tcp_get_mem_size_pst: can not get dst interface! <3>[43903.888778] qtaguid: iface_stat: stat_update() lo not found <3>[43904.395294] tcp_get_mem_size_pst: can not get dst interface! <3>[43904.404359] tcp_get_mem_size_pst: can not get dst interface! <3>[43904.911272] tcp_get_mem_size_pst: can not get dst interface! <3>[43904.922198] tcp_get_mem_size_pst: can not get dst interface! <3>[43904.937489] tcp_get_mem_size_pst: can not get dst interface! <3>[43904.939472] qtaguid: iface_stat: stat_update() lo not found <3>[43904.950979] tcp_get_mem_size_pst: can not get dst interface! <3>[43904.970145] qtaguid: iface_stat: stat_update() lo not found <3>[43908.878706] tcp_get_mem_size_pst: can not get dst interface! <3>[43908.887100] tcp_get_mem_size_pst: can not get dst interface! <3>[43908.905412] qtaguid: iface_stat: stat_update() lo not found <3>[43909.404664] tcp_get_mem_size_pst: can not get dst interface! <3>[43909.413790] tcp_get_mem_size_pst: can not get dst interface! <3>[43909.428928] qtaguid: iface_stat: stat_update() lo not found <3>[43909.930866] tcp_get_mem_size_pst: can not get dst interface! <3>[43909.939259] tcp_get_mem_size_pst: can not get dst interface! <3>[43909.954183] qtaguid: iface_stat: stat_update() lo not found <3>[43909.955953] tcp_get_mem_size_pst: can not get dst interface! <3>[43909.966849] tcp_get_mem_size_pst: can not get dst interface! <3>[43909.982354] qtaguid: iface_stat: stat_update() lo not found <3>[43913.893539] tcp_get_mem_size_pst: can not get dst interface! <3>[43913.902390] tcp_get_mem_size_pst: can not get dst interface! <3>[43913.922289] qtaguid: iface_stat: stat_update() lo not found <3>[43914.422122] tcp_get_mem_size_pst: can not get dst interface! <3>[43914.432071] tcp_get_mem_size_pst: can not get dst interface! <3>[43914.446965] qtaguid: iface_stat: stat_update() lo not found <3>[43914.946767] tcp_get_mem_size_pst: can not get dst interface! <3>[43914.956045] tcp_get_mem_size_pst: can not get dst interface! <3>[43914.972679] qtaguid: iface_stat: stat_update() lo not found <3>[43914.977867] tcp_get_mem_size_pst: can not get dst interface! <3>[43914.987115] tcp_get_mem_size_pst: can not get dst interface! <3>[43915.006251] qtaguid: iface_stat: stat_update() lo not found <3>[43918.925555] tcp_get_mem_size_pst: can not get dst interface! <3>[43918.934528] tcp_get_mem_size_pst: can not get dst interface! <3>[43918.950490] qtaguid: iface_stat: stat_update() lo not found <3>[43919.450231] tcp_get_mem_size_pst: can not get dst interface! <3>[43919.459570] tcp_get_mem_size_pst: can not get dst interface! <3>[43919.475013] qtaguid: iface_stat: stat_update() lo not found <3>[43919.975090] tcp_get_mem_size_pst: can not get dst interface! <3>[43919.983544] tcp_get_mem_size_pst: can not get dst interface! <3>[43919.999170] qtaguid: iface_stat: stat_update() lo not found <3>[43920.001154] tcp_get_mem_size_pst: can not get dst interface! <3>[43920.012782] tcp_get_mem_size_pst: can not get dst interface! <3>[43920.032773] qtaguid: iface_stat: stat_update() lo not found <3>[43923.953207] tcp_get_mem_size_pst: can not get dst interface! <3>[43923.962790] tcp_get_mem_size_pst: can not get dst interface! <3>[43923.977196] qtaguid: iface_stat: stat_update() lo not found <3>[43924.477333] tcp_get_mem_size_pst: can not get dst interface! <3>[43924.486550] tcp_get_mem_size_pst: can not get dst interface! <3>[43924.501719] qtaguid: iface_stat: stat_update() lo not found <3>[43925.001856] tcp_get_mem_size_pst: can not get dst interface! <3>[43925.010432] tcp_get_mem_size_pst: can not get dst interface! <3>[43925.025357] tcp_get_mem_size_pst: can not get dst interface! <3>[43925.032010] qtaguid: iface_stat: stat_update() lo not found <3>[43925.041594] tcp_get_mem_size_pst: can not get dst interface! <3>[43925.061127] qtaguid: iface_stat: stat_update() lo not found <3>[43925.068757] tcp_get_mem_size_pst: can not get dst interface! <3>[43925.077028] tcp_get_mem_size_pst: can not get dst interface! <3>[43925.093112] qtaguid: iface_stat: stat_update() lo not found <3>[43925.193463] tcp_get_mem_size_pst: can not get dst interface! <3>[43925.195996] tcp_get_mem_size_pst: can not get dst interface! <4>[43925.667811] send sigkill to 7317 (on.warrantytime), adj 764, size 7441 <4>[43925.667811] state:1 flag:0x400140 <6>[43928.454626] SLIM_CL: skip reconfig sequence <3>[43930.370542] tcp_get_mem_size_pst: can not get dst interface! <3>[43930.385650] tcp_get_mem_size_pst: can not get dst interface! <3>[43931.382811] tcp_get_mem_size_pst: can not get dst interface! <3>[43931.391571] tcp_get_mem_size_pst: can not get dst interface! <3>[43931.488076] tcp_get_mem_size_pst: can not get dst interface! <3>[43931.506114] tcp_get_mem_size_pst: can not get dst interface! <3>[43931.520153] qtaguid: iface_stat: stat_update() lo not found <3>[43932.020992] tcp_get_mem_size_pst: can not get dst interface! <3>[43932.025509] tcp_get_mem_size_pst: can not get dst interface! <3>[43932.039518] qtaguid: iface_stat: stat_update() lo not found <6>[43934.737122] SLIM_CL: skip reconfig sequence <3>[43935.956411] tcp_get_mem_size_pst: can not get dst interface! <3>[43935.965720] tcp_get_mem_size_pst: can not get dst interface! <3>[43935.981255] qtaguid: iface_stat: stat_update() lo not found <3>[43936.488931] tcp_get_mem_size_pst: can not get dst interface! <3>[43936.501749] tcp_get_mem_size_pst: can not get dst interface! <3>[43937.008815] tcp_get_mem_size_pst: can not get dst interface! <3>[43937.017208] tcp_get_mem_size_pst: can not get dst interface! <3>[43937.032895] qtaguid: iface_stat: stat_update() lo not found <3>[43937.035154] tcp_get_mem_size_pst: can not get dst interface! <3>[43937.046935] tcp_get_mem_size_pst: can not get dst interface! <3>[43937.068482] qtaguid: iface_stat: stat_update() lo not found <3>[43940.986749] tcp_get_mem_size_pst: can not get dst interface! <3>[43940.996485] tcp_get_mem_size_pst: can not get dst interface! <3>[43941.013454] qtaguid: iface_stat: stat_update() lo not found <3>[43941.513591] tcp_get_mem_size_pst: can not get dst interface! <3>[43941.522015] tcp_get_mem_size_pst: can not get dst interface! <3>[43941.537306] qtaguid: iface_stat: stat_update() lo not found <3>[43942.037412] tcp_get_mem_size_pst: can not get dst interface! <3>[43942.045958] tcp_get_mem_size_pst: can not get dst interface! <3>[43942.061249] tcp_get_mem_size_pst: can not get dst interface! <3>[43942.065766] qtaguid: iface_stat: stat_update() lo not found <3>[43942.074342] tcp_get_mem_size_pst: can not get dst interface! <3>[43942.094546] qtaguid: iface_stat: stat_update() lo not found <3>[43946.001307] tcp_get_mem_size_pst: can not get dst interface! <3>[43946.010219] tcp_get_mem_size_pst: can not get dst interface! <3>[43946.024624] qtaguid: iface_stat: stat_update() lo not found <3>[43946.524762] tcp_get_mem_size_pst: can not get dst interface! <3>[43946.534498] tcp_get_mem_size_pst: can not get dst interface! <3>[43946.549239] qtaguid: iface_stat: stat_update() lo not found <3>[43947.049315] tcp_get_mem_size_pst: can not get dst interface! <3>[43947.058532] tcp_get_mem_size_pst: can not get dst interface! <3>[43947.074525] tcp_get_mem_size_pst: can not get dst interface! <3>[43947.078859] qtaguid: iface_stat: stat_update() lo not found <3>[43947.087130] tcp_get_mem_size_pst: can not get dst interface! <3>[43947.105564] qtaguid: iface_stat: stat_update() lo not found <3>[43951.016048] tcp_get_mem_size_pst: can not get dst interface! <3>[43951.025326] tcp_get_mem_size_pst: can not get dst interface! <3>[43951.040037] qtaguid: iface_stat: stat_update() lo not found <3>[43951.540144] tcp_get_mem_size_pst: can not get dst interface! <3>[43951.548445] tcp_get_mem_size_pst: can not get dst interface! <3>[43951.563614] qtaguid: iface_stat: stat_update() lo not found <3>[43952.063751] tcp_get_mem_size_pst: can not get dst interface! <3>[43952.072267] tcp_get_mem_size_pst: can not get dst interface! <3>[43952.087588] tcp_get_mem_size_pst: can not get dst interface! <3>[43952.092502] qtaguid: iface_stat: stat_update() lo not found <3>[43952.100986] tcp_get_mem_size_pst: can not get dst interface! <3>[43952.120275] qtaguid: iface_stat: stat_update() lo not found <3>[43956.031186] tcp_get_mem_size_pst: can not get dst interface! <3>[43956.039915] tcp_get_mem_size_pst: can not get dst interface! <3>[43956.055572] qtaguid: iface_stat: stat_update() lo not found <3>[43956.555709] tcp_get_mem_size_pst: can not get dst interface! <3>[43956.564041] tcp_get_mem_size_pst: can not get dst interface! <3>[43956.579179] qtaguid: iface_stat: stat_update() lo not found <3>[43957.079927] tcp_get_mem_size_pst: can not get dst interface! <3>[43957.089053] tcp_get_mem_size_pst: can not get dst interface! <3>[43957.105198] tcp_get_mem_size_pst: can not get dst interface! <3>[43957.110142] qtaguid: iface_stat: stat_update() lo not found <3>[43957.117711] tcp_get_mem_size_pst: can not get dst interface! <3>[43957.133033] tcp_get_mem_size_pst: can not get dst interface! <3>[43957.135841] tcp_get_mem_size_pst: can not get dst interface! <3>[43957.243394] tcp_get_mem_size_pst: can not get dst interface! <3>[43957.246050] tcp_get_mem_size_pst: can not get dst interface! <4>[43958.218246] send sigkill to 15485 (rtupflagservice), adj 764, size 7237 <4>[43958.218246] state:1 flag:0x400140 <4>[43958.227737] send sigkill to 15577 (spire.mmservice), adj 705, size 10918 <4>[43958.227737] state:1 flag:0x400140 <6>[43960.516460] SLIM_CL: skip reconfig sequence <3>[43962.409608] tcp_get_mem_size_pst: can not get dst interface! <3>[43962.422274] tcp_get_mem_size_pst: can not get dst interface! <3>[43963.461218] tcp_get_mem_size_pst: can not get dst interface! <3>[43963.467414] tcp_get_mem_size_pst: can not get dst interface! <3>[43963.491739] tcp_get_mem_size_pst: can not get dst interface! <3>[43963.502451] tcp_get_mem_size_pst: can not get dst interface! <3>[43963.511058] qtaguid: iface_stat: stat_update() lo not found <3>[43964.011897] tcp_get_mem_size_pst: can not get dst interface! <3>[43964.017116] tcp_get_mem_size_pst: can not get dst interface! <6>[43966.722137] SLIM_CL: skip reconfig sequence <3>[43967.963461] tcp_get_mem_size_pst: can not get dst interface! <3>[43967.972099] tcp_get_mem_size_pst: can not get dst interface! <3>[43967.987115] qtaguid: iface_stat: stat_update() lo not found <3>[43968.498880] tcp_get_mem_size_pst: can not get dst interface! <3>[43968.513988] tcp_get_mem_size_pst: can not get dst interface! <3>[43968.541426] qtaguid: iface_stat: stat_update() lo not found <3>[43969.042601] tcp_get_mem_size_pst: can not get dst interface! <3>[43969.051024] tcp_get_mem_size_pst: can not get dst interface! <3>[43969.066529] tcp_get_mem_size_pst: can not get dst interface! <3>[43969.070802] qtaguid: iface_stat: stat_update() lo not found <3>[43969.079195] tcp_get_mem_size_pst: can not get dst interface! <3>[43973.013149] tcp_get_mem_size_pst: can not get dst interface! <3>[43973.021847] tcp_get_mem_size_pst: can not get dst interface! <3>[43973.036985] qtaguid: iface_stat: stat_update() lo not found <3>[43973.535963] tcp_get_mem_size_pst: can not get dst interface! <3>[43973.546553] tcp_get_mem_size_pst: can not get dst interface! <3>[43973.562088] qtaguid: iface_stat: stat_update() lo not found <3>[43974.062134] tcp_get_mem_size_pst: can not get dst interface! <3>[43974.072297] tcp_get_mem_size_pst: can not get dst interface! <3>[43974.089022] tcp_get_mem_size_pst: can not get dst interface! <3>[43974.093265] qtaguid: iface_stat: stat_update() lo not found <3>[43974.102085] tcp_get_mem_size_pst: can not get dst interface! <3>[43974.121893] qtaguid: iface_stat: stat_update() lo not found <3>[43978.026059] tcp_get_mem_size_pst: can not get dst interface! <3>[43978.035642] tcp_get_mem_size_pst: can not get dst interface! <3>[43978.050445] qtaguid: iface_stat: stat_update() lo not found <3>[43978.550429] tcp_get_mem_size_pst: can not get dst interface! <3>[43978.558853] tcp_get_mem_size_pst: can not get dst interface! <3>[43978.574418] qtaguid: iface_stat: stat_update() lo not found <3>[43979.074464] tcp_get_mem_size_pst: can not get dst interface! <3>[43979.083162] tcp_get_mem_size_pst: can not get dst interface! <3>[43979.098514] tcp_get_mem_size_pst: can not get dst interface! <3>[43979.104252] qtaguid: iface_stat: stat_update() lo not found <3>[43979.112889] tcp_get_mem_size_pst: can not get dst interface! <3>[43979.132514] qtaguid: iface_stat: stat_update() lo not found <3>[43983.040342] tcp_get_mem_size_pst: can not get dst interface! <3>[43983.049163] tcp_get_mem_size_pst: can not get dst interface! <3>[43983.064545] qtaguid: iface_stat: stat_update() lo not found <3>[43983.564530] tcp_get_mem_size_pst: can not get dst interface! <3>[43983.572984] tcp_get_mem_size_pst: can not get dst interface! <3>[43983.588183] qtaguid: iface_stat: stat_update() lo not found <3>[43984.088778] tcp_get_mem_size_pst: can not get dst interface! <3>[43984.100589] tcp_get_mem_size_pst: can not get dst interface! <3>[43984.115667] tcp_get_mem_size_pst: can not get dst interface! <3>[43984.121588] qtaguid: iface_stat: stat_update() lo not found <3>[43984.130042] tcp_get_mem_size_pst: can not get dst interface! <3>[43988.054962] tcp_get_mem_size_pst: can not get dst interface! <3>[43988.063599] tcp_get_mem_size_pst: can not get dst interface! <3>[43988.079134] qtaguid: iface_stat: stat_update() lo not found <3>[43988.579027] tcp_get_mem_size_pst: can not get dst interface! <3>[43988.588854] tcp_get_mem_size_pst: can not get dst interface! <3>[43988.603657] qtaguid: iface_stat: stat_update() lo not found <3>[43989.103672] tcp_get_mem_size_pst: can not get dst interface! <3>[43989.112370] tcp_get_mem_size_pst: can not get dst interface! <3>[43989.129492] qtaguid: iface_stat: stat_update() lo not found <3>[43989.132972] tcp_get_mem_size_pst: can not get dst interface! <3>[43989.141517] tcp_get_mem_size_pst: can not get dst interface! <3>[43989.161447] tcp_get_mem_size_pst: can not get dst interface! <3>[43989.168803] qtaguid: iface_stat: stat_update() lo not found <3>[43989.176585] tcp_get_mem_size_pst: can not get dst interface! <3>[43989.286092] tcp_get_mem_size_pst: can not get dst interface! <3>[43989.298941] tcp_get_mem_size_pst: can not get dst interface! <6>[43992.558639] SLIM_CL: skip reconfig sequence <3>[43994.488961] tcp_get_mem_size_pst: can not get dst interface! <3>[43994.521435] tcp_get_mem_size_pst: can not get dst interface! <3>[43995.465094] tcp_get_mem_size_pst: can not get dst interface! <3>[43995.474128] tcp_get_mem_size_pst: can not get dst interface! <3>[43995.529340] tcp_get_mem_size_pst: can not get dst interface! <3>[43995.533735] tcp_get_mem_size_pst: can not get dst interface! <3>[43996.051910] tcp_get_mem_size_pst: can not get dst interface! <3>[43996.056488] tcp_get_mem_size_pst: can not get dst interface! <6>[43998.771580] SLIM_CL: skip reconfig sequence <3>[43999.986016] tcp_get_mem_size_pst: can not get dst interface! <3>[43999.995569] tcp_get_mem_size_pst: can not get dst interface! <3>[44000.030118] qtaguid: iface_stat: stat_update() lo not found <3>[44000.530866] tcp_get_mem_size_pst: can not get dst interface! <3>[44000.539503] tcp_get_mem_size_pst: can not get dst interface! <3>[44000.565506] qtaguid: iface_stat: stat_update() lo not found <3>[44001.065613] tcp_get_mem_size_pst: can not get dst interface! <3>[44001.074952] tcp_get_mem_size_pst: can not get dst interface! <3>[44001.089724] qtaguid: iface_stat: stat_update() lo not found <3>[44001.092685] tcp_get_mem_size_pst: can not get dst interface! <3>[44001.103214] tcp_get_mem_size_pst: can not get dst interface! <3>[44001.121099] qtaguid: iface_stat: stat_update() lo not found <3>[44005.040068] tcp_get_mem_size_pst: can not get dst interface! <3>[44005.049743] tcp_get_mem_size_pst: can not get dst interface! <3>[44005.063843] qtaguid: iface_stat: stat_update() lo not found <3>[44005.563889] tcp_get_mem_size_pst: can not get dst interface! <3>[44005.573960] tcp_get_mem_size_pst: can not get dst interface! <3>[44005.589526] qtaguid: iface_stat: stat_update() lo not found <3>[44006.089572] tcp_get_mem_size_pst: can not get dst interface! <3>[44006.098545] tcp_get_mem_size_pst: can not get dst interface! <3>[44006.114537] tcp_get_mem_size_pst: can not get dst interface! <3>[44006.119756] qtaguid: iface_stat: stat_update() lo not found <3>[44006.127478] tcp_get_mem_size_pst: can not get dst interface! <3>[44006.147103] qtaguid: iface_stat: stat_update() lo not found <3>[44010.068635] tcp_get_mem_size_pst: can not get dst interface! <3>[44010.077272] tcp_get_mem_size_pst: can not get dst interface! <3>[44010.092563] qtaguid: iface_stat: stat_update() lo not found <3>[44010.592547] tcp_get_mem_size_pst: can not get dst interface! <3>[44010.601246] tcp_get_mem_size_pst: can not get dst interface! <3>[44010.616689] qtaguid: iface_stat: stat_update() lo not found <3>[44011.116643] tcp_get_mem_size_pst: can not get dst interface! <3>[44011.125342] tcp_get_mem_size_pst: can not get dst interface! <3>[44011.140968] qtaguid: iface_stat: stat_update() lo not found <3>[44011.144447] tcp_get_mem_size_pst: can not get dst interface! <3>[44011.153634] tcp_get_mem_size_pst: can not get dst interface! <3>[44011.174174] qtaguid: iface_stat: stat_update() lo not found <3>[44015.085116] tcp_get_mem_size_pst: can not get dst interface! <3>[44015.093844] tcp_get_mem_size_pst: can not get dst interface! <3>[44015.109807] qtaguid: iface_stat: stat_update() lo not found <3>[44015.608906] tcp_get_mem_size_pst: can not get dst interface! <3>[44015.617391] tcp_get_mem_size_pst: can not get dst interface! <3>[44015.631797] qtaguid: iface_stat: stat_update() lo not found <3>[44016.170054] tcp_get_mem_size_pst: can not get dst interface! <3>[44016.182293] tcp_get_mem_size_pst: can not get dst interface! <3>[44016.187420] tcp_get_mem_size_pst: can not get dst interface! <3>[44016.190747] tcp_get_mem_size_pst: can not get dst interface! <3>[44020.113469] tcp_get_mem_size_pst: can not get dst interface! <3>[44020.122015] tcp_get_mem_size_pst: can not get dst interface! <3>[44020.136665] qtaguid: iface_stat: stat_update() lo not found <3>[44020.636771] tcp_get_mem_size_pst: can not get dst interface! <3>[44020.646843] tcp_get_mem_size_pst: can not get dst interface! <3>[44020.661127] qtaguid: iface_stat: stat_update() lo not found <3>[44021.161295] tcp_get_mem_size_pst: can not get dst interface! <3>[44021.171488] tcp_get_mem_size_pst: can not get dst interface! <3>[44021.188427] tcp_get_mem_size_pst: can not get dst interface! <3>[44021.192914] qtaguid: iface_stat: stat_update() lo not found <3>[44021.201459] tcp_get_mem_size_pst: can not get dst interface! <3>[44021.221908] qtaguid: iface_stat: stat_update() lo not found <3>[44021.222335] tcp_get_mem_size_pst: can not get dst interface! <3>[44021.225631] tcp_get_mem_size_pst: can not get dst interface! <3>[44021.332239] tcp_get_mem_size_pst: can not get dst interface! <3>[44021.334864] tcp_get_mem_size_pst: can not get dst interface! <4>[44021.506205] send sigkill to 19990 (ndroid.camera3d), adj 764, size 8065 <4>[44021.506327] state:2 flag:0x400140 <4>[44021.519146] terminate loop for 19990 (ndroid.camera3d) old:19469 -487151 3 <4>[44021.519268] state:2 flag:0x400140 <6>[44021.883010] msm_enqueue: queue eventdata new max is 1 <6>[44021.926837] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[44021.927570] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <6>[44021.949514] msm_enqueue: queue control new max is 1 <6>[44022.034269] vfe32_proc_general: cmdID = RESET <6>[44022.035703] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40 <6>[44022.053283] configure_pingpong_buffers Configure ping/pong address for 25 <6>[44022.053436] vfe32_proc_general: cmdID = START <6>[44022.707853] msm_rotator msm_rotator: scale: 0, rot: 4, src: 1280x720, dst: 720x1280, s_dst: 720x1280, sfmt: 6, dfmt: 6 => fyuv: 1, pl: 3 <6>[44022.738862] mdp4_overlay_mdp_perf_upd mdp clk is changed [1] from 85330000 to 96000000 <6>[44022.770573] mdp4_overlay_mdp_perf_upd mdp clk is changed [0] from 96000000 to 85330000 <4>[44022.848278] send sigkill to 20106 (socialphonebook), adj 764, size 14057 <4>[44022.848400] state:1 flag:0x400140 <6>[44023.128363] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <6>[44024.559311] vfe32_proc_general: cmdID = STOP <6>[44024.589617] SLIM_CL: skip reconfig sequence <6>[44024.603840] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[44024.607502] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <3>[44024.866559] msm_release_ion_client Calling ion_client_destroy <6>[44026.008387] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <3>[44026.486245] tcp_get_mem_size_pst: can not get dst interface! <3>[44026.499155] tcp_get_mem_size_pst: can not get dst interface! <3>[44027.490121] tcp_get_mem_size_pst: can not get dst interface! <3>[44027.498209] tcp_get_mem_size_pst: can not get dst interface! <3>[44027.565720] tcp_get_mem_size_pst: can not get dst interface! <3>[44027.574144] tcp_get_mem_size_pst: can not get dst interface! <3>[44028.091220] tcp_get_mem_size_pst: can not get dst interface! <3>[44028.098575] tcp_get_mem_size_pst: can not get dst interface! <6>[44030.814430] SLIM_CL: skip reconfig sequence <3>[44032.036832] tcp_get_mem_size_pst: can not get dst interface! <3>[44032.044371] tcp_get_mem_size_pst: can not get dst interface! <3>[44032.558792] tcp_get_mem_size_pst: can not get dst interface! <3>[44032.567338] tcp_get_mem_size_pst: can not get dst interface! <3>[44032.606343] qtaguid: iface_stat: stat_update() lo not found <3>[44033.100284] tcp_get_mem_size_pst: can not get dst interface! <3>[44033.109562] tcp_get_mem_size_pst: can not get dst interface! <3>[44033.125219] tcp_get_mem_size_pst: can not get dst interface! <3>[44033.130225] qtaguid: iface_stat: stat_update() lo not found <3>[44033.137855] tcp_get_mem_size_pst: can not get dst interface! <3>[44033.156472] qtaguid: iface_stat: stat_update() lo not found <3>[44037.081636] tcp_get_mem_size_pst: can not get dst interface! <3>[44037.090335] tcp_get_mem_size_pst: can not get dst interface! <3>[44037.106327] qtaguid: iface_stat: stat_update() lo not found <3>[44037.606373] tcp_get_mem_size_pst: can not get dst interface! <3>[44037.615468] tcp_get_mem_size_pst: can not get dst interface! <3>[44037.630789] qtaguid: iface_stat: stat_update() lo not found <3>[44038.130683] tcp_get_mem_size_pst: can not get dst interface! <3>[44038.139381] tcp_get_mem_size_pst: can not get dst interface! <3>[44038.155251] tcp_get_mem_size_pst: can not get dst interface! <3>[44038.160379] qtaguid: iface_stat: stat_update() lo not found <3>[44038.168314] tcp_get_mem_size_pst: can not get dst interface! <3>[44038.188030] qtaguid: iface_stat: stat_update() lo not found <3>[44042.109624] tcp_get_mem_size_pst: can not get dst interface! <3>[44042.119115] tcp_get_mem_size_pst: can not get dst interface! <3>[44042.133948] qtaguid: iface_stat: stat_update() lo not found <3>[44042.633964] tcp_get_mem_size_pst: can not get dst interface! <3>[44042.643272] tcp_get_mem_size_pst: can not get dst interface! <3>[44042.658960] qtaguid: iface_stat: stat_update() lo not found <3>[44043.158822] tcp_get_mem_size_pst: can not get dst interface! <3>[44043.167795] tcp_get_mem_size_pst: can not get dst interface! <3>[44043.184368] tcp_get_mem_size_pst: can not get dst interface! <3>[44043.189556] qtaguid: iface_stat: stat_update() lo not found <3>[44043.197278] tcp_get_mem_size_pst: can not get dst interface! <3>[44043.215987] qtaguid: iface_stat: stat_update() lo not found <3>[44047.139961] tcp_get_mem_size_pst: can not get dst interface! <3>[44047.149483] tcp_get_mem_size_pst: can not get dst interface! <3>[44047.163919] qtaguid: iface_stat: stat_update() lo not found <3>[44047.663904] tcp_get_mem_size_pst: can not get dst interface! <3>[44047.672480] tcp_get_mem_size_pst: can not get dst interface! <3>[44047.689358] qtaguid: iface_stat: stat_update() lo not found <3>[44048.189282] tcp_get_mem_size_pst: can not get dst interface! <3>[44048.198011] tcp_get_mem_size_pst: can not get dst interface! <3>[44048.213149] tcp_get_mem_size_pst: can not get dst interface! <3>[44048.219100] qtaguid: iface_stat: stat_update() lo not found <3>[44048.226974] tcp_get_mem_size_pst: can not get dst interface! <3>[44048.248094] qtaguid: iface_stat: stat_update() lo not found <3>[44052.171061] tcp_get_mem_size_pst: can not get dst interface! <3>[44052.180614] tcp_get_mem_size_pst: can not get dst interface! <3>[44052.195325] qtaguid: iface_stat: stat_update() lo not found <3>[44052.695340] tcp_get_mem_size_pst: can not get dst interface! <3>[44052.705839] tcp_get_mem_size_pst: can not get dst interface! <3>[44052.720550] qtaguid: iface_stat: stat_update() lo not found <3>[44053.220504] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.229935] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.245317] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.250475] qtaguid: iface_stat: stat_update() lo not found <3>[44053.259662] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.284658] qtaguid: iface_stat: stat_update() lo not found <3>[44053.286092] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.294821] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.405000] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.407716] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.567856] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.576402] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.588549] qtaguid: iface_stat: stat_update() lo not found <3>[44053.590319] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.634604] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.643089] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.669489] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.673152] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.678279] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.680629] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.683315] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.685635] tcp_get_mem_size_pst: can not get dst interface! <3>[44053.688442] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.226608] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.238267] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.242570] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.259845] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.368803] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.371305] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.374785] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.377043] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.529614] tcp_get_mem_size_pst: can not get dst interface! <3>[44054.532666] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.525616] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.528271] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.532392] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.534589] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.537763] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.539991] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.543349] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.545515] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.548812] tcp_get_mem_size_pst: can not get dst interface! <3>[44055.551040] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.512584] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.523724] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.537550] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.549544] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.563370] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.572282] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.576066] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.579088] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.583330] tcp_get_mem_size_pst: can not get dst interface! <3>[44056.586108] tcp_get_mem_size_pst: can not get dst interface! <6>[44056.681423] SLIM_CL: skip reconfig sequence <3>[44058.531049] tcp_get_mem_size_pst: can not get dst interface! <3>[44058.542128] tcp_get_mem_size_pst: can not get dst interface! <3>[44059.576158] tcp_get_mem_size_pst: can not get dst interface! <3>[44059.586504] tcp_get_mem_size_pst: can not get dst interface! <3>[44059.603352] tcp_get_mem_size_pst: can not get dst interface! <3>[44059.616384] tcp_get_mem_size_pst: can not get dst interface! <3>[44059.631034] qtaguid: iface_stat: stat_update() lo not found <3>[44060.633933] tcp_get_mem_size_pst: can not get dst interface! <3>[44060.644798] tcp_get_mem_size_pst: can not get dst interface! <3>[44060.664240] qtaguid: iface_stat: stat_update() lo not found <3>[44061.163675] tcp_get_mem_size_pst: can not get dst interface! <3>[44061.173991] tcp_get_mem_size_pst: can not get dst interface! <3>[44061.192334] qtaguid: iface_stat: stat_update() lo not found <3>[44061.691800] tcp_get_mem_size_pst: can not get dst interface! <3>[44061.702421] tcp_get_mem_size_pst: can not get dst interface! <3>[44061.721252] qtaguid: iface_stat: stat_update() lo not found <6>[44061.801734] SLIM_CL: skip reconfig sequence <3>[44062.220657] tcp_get_mem_size_pst: can not get dst interface! <3>[44062.229202] tcp_get_mem_size_pst: can not get dst interface! <3>[44062.246568] tcp_get_mem_size_pst: can not get dst interface! <3>[44062.255511] qtaguid: iface_stat: stat_update() lo not found <3>[44062.261737] tcp_get_mem_size_pst: can not get dst interface! <3>[44062.287222] qtaguid: iface_stat: stat_update() lo not found <3>[44065.999628] tcp_get_mem_size_pst: can not get dst interface! <3>[44066.008387] tcp_get_mem_size_pst: can not get dst interface! <3>[44066.026547] tcp_get_mem_size_pst: can not get dst interface! <3>[44066.039915] tcp_get_mem_size_pst: can not get dst interface! <3>[44066.053313] tcp_get_mem_size_pst: can not get dst interface! <3>[44066.055816] tcp_get_mem_size_pst: can not get dst interface! <3>[44066.162759] tcp_get_mem_size_pst: can not get dst interface! <3>[44066.165293] tcp_get_mem_size_pst: can not get dst interface! <3>[44068.176249] tcp_get_mem_size_pst: can not get dst interface! <3>[44068.188213] tcp_get_mem_size_pst: can not get dst interface! <3>[44068.705107] tcp_get_mem_size_pst: can not get dst interface! <3>[44068.730591] tcp_get_mem_size_pst: can not get dst interface! <3>[44069.253252] tcp_get_mem_size_pst: can not get dst interface! <3>[44069.265003] tcp_get_mem_size_pst: can not get dst interface! <6>[44069.488229] SLIM_CL: skip reconfig sequence <3>[44069.780675] tcp_get_mem_size_pst: can not get dst interface! <3>[44069.792090] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.304618] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.316887] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.331995] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.346980] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.361172] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.364743] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.871839] tcp_get_mem_size_pst: can not get dst interface! <3>[44070.883925] tcp_get_mem_size_pst: can not get dst interface! <3>[44071.399353] tcp_get_mem_size_pst: can not get dst interface! <3>[44071.402283] tcp_get_mem_size_pst: can not get dst interface! <3>[44071.406373] tcp_get_mem_size_pst: can not get dst interface! <3>[44071.410249] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.065674] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.078462] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.111333] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.121801] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.228226] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.231430] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.241410] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.250811] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.755282] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.757327] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.760135] qtaguid: iface_stat: stat_update() lo not found <3>[44077.762943] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.768436] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.771794] qtaguid: iface_stat: stat_update() lo not found <3>[44077.873060] tcp_get_mem_size_pst: can not get dst interface! <3>[44077.877363] tcp_get_mem_size_pst: can not get dst interface! <6>[44077.972038] sps:BAM 0x124c2000 enabled: ver:0x5, number of pipes:6 <3>[44079.391235] tcp_get_mem_size_pst: can not get dst interface! <3>[44079.393768] tcp_get_mem_size_pst: can not get dst interface! <3>[44079.899735] tcp_get_mem_size_pst: can not get dst interface! <3>[44079.913378] tcp_get_mem_size_pst: can not get dst interface! <3>[44080.430515] tcp_get_mem_size_pst: can not get dst interface! <3>[44080.441349] tcp_get_mem_size_pst: can not get dst interface! <3>[44080.455450] tcp_get_mem_size_pst: can not get dst interface! <3>[44080.468604] tcp_get_mem_size_pst: can not get dst interface! <6>[44081.039305] SLIM_CL: skip reconfig sequence <6>[44081.964316] qtaguid: ctrl_tag(t 145 43112881717248 796158305): insufficient priv from pid=8770 tgid=8724 uid=10038 <6>[44081.965598] qtaguid: ctrl_tag(t 146 43112881717248 796158305): insufficient priv from pid=8770 tgid=8724 uid=10038 <6>[44081.966666] qtaguid: ctrl_tag(t 153 43112881717248 796158305): insufficient priv from pid=8770 tgid=8724 uid=10038 <3>[44083.496835] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.507182] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.532697] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.554427] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.564377] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.566910] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.571427] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.574540] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.580126] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.582720] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.587145] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.589678] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.724334] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.756961] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.768589] qtaguid: iface_stat: stat_update() lo not found <3>[44083.772160] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.811012] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.833262] qtaguid: iface_stat: stat_update() lo not found <3>[44083.937580] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.939869] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.943318] tcp_get_mem_size_pst: can not get dst interface! <3>[44083.945668] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.114232] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.117956] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.124273] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.127295] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.133704] qtaguid: iface_stat: stat_update() lo not found <3>[44084.133948] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.137397] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.141700] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.144936] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.153878] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.159555] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.164438] tcp_get_mem_size_pst: can not get dst interface! <3>[44084.167948] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.173045] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.178294] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.184459] qtaguid: iface_stat: stat_update() lo not found <3>[44085.184734] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.187603] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.192181] qtaguid: iface_stat: stat_update() lo not found <3>[44085.193402] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.196546] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.200879] qtaguid: iface_stat: stat_update() lo not found <3>[44085.201154] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.204847] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.210585] qtaguid: iface_stat: stat_update() lo not found <3>[44085.211134] tcp_get_mem_size_pst: can not get dst interface! <3>[44085.214217] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.155862] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.166483] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.179393] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.190594] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.205366] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.217269] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.230179] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.233445] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.236924] tcp_get_mem_size_pst: can not get dst interface! <3>[44086.239579] tcp_get_mem_size_pst: can not get dst interface! <3>[44088.182079] tcp_get_mem_size_pst: can not get dst interface! <3>[44088.193799] tcp_get_mem_size_pst: can not get dst interface! <3>[44089.232193] tcp_get_mem_size_pst: can not get dst interface! <3>[44089.243425] tcp_get_mem_size_pst: can not get dst interface! <3>[44089.260913] tcp_get_mem_size_pst: can not get dst interface! <3>[44089.275197] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.295615] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.308586] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.338038] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.348415] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.372648] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.381835] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.487588] tcp_get_mem_size_pst: can not get dst interface! <3>[44090.490670] tcp_get_mem_size_pst: can not get dst interface! <6>[44092.043120] msm_enqueue: queue eventdata new max is 1 <6>[44092.108097] msm_enqueue: queue control new max is 1 <6>[44092.121313] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[44092.122198] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <6>[44092.197492] vfe32_proc_general: cmdID = RESET <6>[44092.198896] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40 <6>[44092.218490] configure_pingpong_buffers Configure ping/pong address for 25 <6>[44092.219192] vfe32_proc_general: cmdID = START <6>[44092.693600] msm_rotator msm_rotator: scale: 0, rot: 4, src: 1280x720, dst: 720x1280, s_dst: 720x1280, sfmt: 6, dfmt: 6 => fyuv: 1, pl: 3 <4>[44092.772373] send sigkill to 20225 (ndroid.settings), adj 764, size 12671 <4>[44092.772465] state:1 flag:0x400140 <4>[44092.779027] terminate loop for 20225 (ndroid.settings) old:19990 -493439 1 <4>[44092.779149] state:0 flag:0x400140 <4>[44092.782201] terminate loop for 20225 (ndroid.settings) old:19990 -490265 2 <4>[44092.782262] state:0 flag:0x400140 <6>[44093.704008] SLIM_CL: skip reconfig sequence <6>[44094.008906] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <3>[44102.503092] tcp_get_mem_size_pst: can not get dst interface! <3>[44102.506175] tcp_get_mem_size_pst: can not get dst interface! <6>[44106.856274] qtaguid: ctrl_tag(t 147 43112881717248 1869308773): insufficient priv from pid=8770 tgid=8724 uid=10038 <6>[44106.856579] qtaguid: ctrl_tag(t 148 43112881717248 1869308773): insufficient priv from pid=8770 tgid=8724 uid=10038 <6>[44106.856884] qtaguid: ctrl_tag(t 149 43112881717248 1869308773): insufficient priv from pid=8770 tgid=8724 uid=10038 <6>[44113.829965] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[44113.832071] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <6>[44116.014583] vfe32_proc_general: cmdID = STOP <6>[44116.038419] vfe32_proc_general: cmdID = RESET <6>[44116.039518] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x4 <6>[44116.086092] configure_pingpong_buffers Configure ping/pong address for 25 <6>[44116.086245] configure_pingpong_buffers Configure ping/pong address for 26 <6>[44116.395691] vfe32_proc_general: cmdID = STOP <6>[44116.805335] vfe32_proc_general: cmdID = RESET <6>[44116.806831] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40 <6>[44116.859509] configure_pingpong_buffers Configure ping/pong address for 25 <6>[44116.862103] vfe32_proc_general: cmdID = START <6>[44118.008448] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <6>[44120.630026] SLIM_CL: skip reconfig sequence <6>[44121.645683] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[44121.646507] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <6>[44123.782048] vfe32_proc_general: cmdID = STOP <6>[44123.803596] vfe32_proc_general: cmdID = RESET <6>[44123.804511] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x4 <6>[44123.852276] configure_pingpong_buffers Configure ping/pong address for 25 <6>[44123.852428] configure_pingpong_buffers Configure ping/pong address for 26 <6>[44124.098850] vfe32_proc_general: cmdID = STOP <6>[44124.475837] vfe32_proc_general: cmdID = RESET <6>[44124.477180] msm_mctl_set_vfe_output_mode: mctl=0xc0f97d18, vfe output mode =0x40 <6>[44124.525036] configure_pingpong_buffers Configure ping/pong address for 25 <6>[44124.531446] vfe32_proc_general: cmdID = START <6>[44126.008021] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <6>[44128.048980] SLIM_CL: skip reconfig sequence <3>[44129.673426] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.683437] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.718688] qtaguid: iface_stat: stat_update() lo not found <3>[44129.720794] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.732331] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.745790] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.748354] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.754336] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.757205] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.762515] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.765079] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.772160] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.775059] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.925250] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.934437] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.938893] qtaguid: iface_stat: stat_update() lo not found <3>[44129.939198] tcp_get_mem_size_pst: can not get dst interface! <3>[44129.942372] tcp_get_mem_size_pst: can not get dst interface! <6>[44130.028043] vfe32_proc_general: cmdID = STOP <6>[44130.062408] lm3561 10-0053: lm3561_resume: Reinit lm3561 chip. <6>[44130.063935] lm3561 10-0053: lm3561_resume: Resuming LM3561 driver. <3>[44130.375334] msm_release_ion_client Calling ion_client_destroy <3>[44130.643761] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.660852] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.667658] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.671168] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.787298] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.789404] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.794195] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.799323] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.805702] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.807502] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.811867] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.817666] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.821603] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.823464] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.825815] qtaguid: iface_stat: stat_update() lo not found <3>[44130.826425] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.830515] tcp_get_mem_size_pst: can not get dst interface! <3>[44130.835245] qtaguid: iface_stat: stat_update() lo not found <6>[44132.008967] lm3561 10-0053: lm3561_suspend: Suspending LM3561 driver. <3>[44132.764072] tcp_get_mem_size_pst: can not get dst interface! <3>[44132.766575] tcp_get_mem_size_pst: can not get dst interface! <3>[44133.777898] tcp_get_mem_size_pst: can not get dst interface! <3>[44133.788030] tcp_get_mem_size_pst: can not get dst interface! <3>[44133.803291] qtaguid: iface_stat: stat_update() lo not found <3>[44133.805976] tcp_get_mem_size_pst: can not get dst interface! <3>[44133.818856] tcp_get_mem_size_pst: can not get dst interface! <3>[44133.837351] qtaguid: iface_stat: stat_update() lo not found <3>[44134.837016] tcp_get_mem_size_pst: can not get dst interface! <3>[44134.846935] tcp_get_mem_size_pst: can not get dst interface! <3>[44134.871656] tcp_get_mem_size_pst: can not get dst interface! <3>[44134.880934] tcp_get_mem_size_pst: can not get dst interface! <3>[44134.893783] tcp_get_mem_size_pst: can not get dst interface! <3>[44134.896530] tcp_get_mem_size_pst: can not get dst interface! <3>[44135.003260] tcp_get_mem_size_pst: can not get dst interface! <3>[44135.005915] tcp_get_mem_size_pst: can not get dst interface! <6>[44138.224716] SLIM_CL: skip reconfig sequence <3>[44140.400330] tcp_get_mem_size_pst: can not get dst interface! <3>[44140.418886] tcp_get_mem_size_pst: can not get dst interface! <3>[44140.451909] qtaguid: iface_stat: stat_update() lo not found <3>[44140.551833] tcp_get_mem_size_pst: can not get dst interface! <3>[44140.554580] tcp_get_mem_size_pst: can not get dst interface! <6>[44141.488137] sps:BAM 0x124c2000 enabled: ver:0x5, number of pipes:6 <3>[44142.571030] tcp_get_mem_size_pst: can not get dst interface! <3>[44142.582598] tcp_get_mem_size_pst: can not get dst interface! <3>[44142.614766] qtaguid: iface_stat: stat_update() lo not found <3>[44143.113133] tcp_get_mem_size_pst: can not get dst interface! <3>[44143.116002] tcp_get_mem_size_pst: can not get dst interface! <3>[44143.623342] tcp_get_mem_size_pst: can not get dst interface! <3>[44143.632437] tcp_get_mem_size_pst: can not get dst interface! <3>[44143.651757] qtaguid: iface_stat: stat_update() lo not found <6>[44143.705503] SLIM_CL: skip reconfig sequence <3>[44144.152718] tcp_get_mem_size_pst: can not get dst interface! <3>[44144.161508] tcp_get_mem_size_pst: can not get dst interface! <3>[44144.179271] qtaguid: iface_stat: stat_update() lo not found <3>[44144.678340] tcp_get_mem_size_pst: can not get dst interface! <3>[44144.681240] tcp_get_mem_size_pst: can not get dst interface! <3>[44145.188763] tcp_get_mem_size_pst: can not get dst interface! <3>[44145.197309] tcp_get_mem_size_pst: can not get dst interface! <3>[44145.213118] qtaguid: iface_stat: stat_update() lo not found <3>[44145.712981] tcp_get_mem_size_pst: can not get dst interface! <3>[44145.725464] tcp_get_mem_size_pst: can not get dst interface! <3>[44145.741823] qtaguid: iface_stat: stat_update() lo not found <3>[44146.243944] tcp_get_mem_size_pst: can not get dst interface! <3>[44146.252459] tcp_get_mem_size_pst: can not get dst interface! <3>[44146.269703] qtaguid: iface_stat: stat_update() lo not found <3>[44146.768284] tcp_get_mem_size_pst: can not get dst interface! <3>[44146.770786] tcp_get_mem_size_pst: can not get dst interface! <3>[44147.285757] tcp_get_mem_size_pst: can not get dst interface! <3>[44147.300101] tcp_get_mem_size_pst: can not get dst interface! <3>[44147.316704] qtaguid: iface_stat: stat_update() lo not found <3>[44147.816842] tcp_get_mem_size_pst: can not get dst interface! <3>[44147.835581] tcp_get_mem_size_pst: can not get dst interface! <3>[44147.853222] qtaguid: iface_stat: stat_update() lo not found <3>[44148.360013] tcp_get_mem_size_pst: can not get dst interface! <3>[44148.369138] tcp_get_mem_size_pst: can not get dst interface! <3>[44148.388366] qtaguid: iface_stat: stat_update() lo not found <3>[44148.887222] tcp_get_mem_size_pst: can not get dst interface! <3>[44148.890182] tcp_get_mem_size_pst: can not get dst interface! <3>[44149.409395] tcp_get_mem_size_pst: can not get dst interface! <3>[44149.422763] tcp_get_mem_size_pst: can not get dst interface! <3>[44149.932392] tcp_get_mem_size_pst: can not get dst interface! <3>[44149.941670] tcp_get_mem_size_pst: can not get dst interface! <3>[44149.959005] qtaguid: iface_stat: stat_update() lo not found <3>[44150.459509] tcp_get_mem_size_pst: can not get dst interface! <3>[44150.467689] tcp_get_mem_size_pst: can not get dst interface! <3>[44150.483254] qtaguid: iface_stat: stat_update() lo not found <3>[44150.989495] tcp_get_mem_size_pst: can not get dst interface! <3>[44150.998133] tcp_get_mem_size_pst: can not get dst interface! <3>[44151.014369] tcp_get_mem_size_pst: can not get dst interface! <3>[44151.017055] qtaguid: iface_stat: stat_update() lo not found <3>[44151.026730] tcp_get_mem_size_pst: can not get dst interface! <3>[44154.199567] tcp_get_mem_size_pst: can not get dst interface! <3>[44154.202222] tcp_get_mem_size_pst: can not get dst interface! <3>[44155.562119] tcp_get_mem_size_pst: can not get dst interface! <3>[44155.572373] tcp_get_mem_size_pst: can not get dst interface! <3>[44155.682247] tcp_get_mem_size_pst: can not get dst interface! <3>[44155.688168] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.864575] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.877058] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.893112] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.905106] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.924060] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.932300] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.937275] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.940419] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.945912] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.948659] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.953603] tcp_get_mem_size_pst: can not get dst interface! <3>[44157.956320] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.083132] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.105473] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.121526] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.158426] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.170237] qtaguid: iface_stat: stat_update() lo not found <3>[44158.283315] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.287344] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.295340] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.301322] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.459509] tcp_get_mem_size_pst: can not get dst interface! <3>[44158.462317] tcp_get_mem_size_pst: can not get dst interface! <6>[44158.954824] SLIM_CL: skip reconfig sequence <3>[44160.403504] tcp_get_mem_size_pst: can not get dst interface! <3>[44160.410676] tcp_get_mem_size_pst: can not get dst interface! <3>[44161.437534] tcp_get_mem_size_pst: can not get dst interface! <3>[44161.470466] tcp_get_mem_size_pst: can not get dst interface! <3>[44161.486825] tcp_get_mem_size_pst: can not get dst interface! <3>[44161.500528] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.513835] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.523327] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.550734] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.560135] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.581468] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.585406] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.690365] tcp_get_mem_size_pst: can not get dst interface! <3>[44162.694821] tcp_get_mem_size_pst: can not get dst interface! <4>[44164.518444] send sigkill to 21771 (sson.tvlauncher), adj 764, size 7334 <4>[44164.518566] state:1 flag:0x400140 <3>[44164.705473] tcp_get_mem_size_pst: can not get dst interface! <3>[44164.707426] tcp_get_mem_size_pst: can not get dst interface! <3>[44165.218398] tcp_get_mem_size_pst: can not get dst interface! <3>[44165.225509] tcp_get_mem_size_pst: can not get dst interface! <3>[44165.252001] qtaguid: iface_stat: stat_update() lo not found <3>[44165.754061] tcp_get_mem_size_pst: can not get dst interface! <3>[44165.763339] tcp_get_mem_size_pst: can not get dst interface! <3>[44165.803413] qtaguid: iface_stat: stat_update() lo not found <6>[44165.896134] SLIM_CL: skip reconfig sequence <3>[44166.302115] tcp_get_mem_size_pst: can not get dst interface! <3>[44166.304740] tcp_get_mem_size_pst: can not get dst interface! <3>[44166.323663] qtaguid: iface_stat: stat_update() lo not found <3>[44166.828775] tcp_get_mem_size_pst: can not get dst interface! <3>[44166.837748] tcp_get_mem_size_pst: can not get dst interface! <3>[44166.870374] qtaguid: iface_stat: stat_update() lo not found <3>[44166.871076] tcp_get_mem_size_pst: can not get dst interface! <3>[44166.874372] tcp_get_mem_size_pst: can not get dst interface! <3>[44169.385619] tcp_get_mem_size_pst: can not get dst interface! <3>[44169.394958] tcp_get_mem_size_pst: can not get dst interface! <3>[44169.416353] qtaguid: iface_stat: stat_update() lo not found <3>[44169.916063] tcp_get_mem_size_pst: can not get dst interface! <3>[44169.925586] tcp_get_mem_size_pst: can not get dst interface! <3>[44169.949025] qtaguid: iface_stat: stat_update() lo not found <3>[44170.448796] tcp_get_mem_size_pst: can not get dst interface! <3>[44170.457342] tcp_get_mem_size_pst: can not get dst interface! <3>[44170.478279] qtaguid: iface_stat: stat_update() lo not found <3>[44170.978813] tcp_get_mem_size_pst: can not get dst interface! <3>[44170.990808] tcp_get_mem_size_pst: can not get dst interface! <3>[44171.011928] qtaguid: iface_stat: stat_update() lo not found <3>[44171.512340] tcp_get_mem_size_pst: can not get dst interface! <3>[44171.521557] tcp_get_mem_size_pst: can not get dst interface! <3>[44171.545180] qtaguid: iface_stat: stat_update() lo not found <3>[44172.044951] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.053954] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.085757] qtaguid: iface_stat: stat_update() lo not found <3>[44172.585497] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.594043] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.617147] qtaguid: iface_stat: stat_update() lo not found <3>[44172.619314] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.630820] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.637412] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.640068] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.648980] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.651604] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.760776] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.766880] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.777196] tcp_get_mem_size_pst: can not get dst interface! <3>[44172.780950] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.306449] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.316124] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.822274] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.834208] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.848735] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.860821] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.874617] tcp_get_mem_size_pst: can not get dst interface! <3>[44173.886947] tcp_get_mem_size_pst: can not get dst interface! <6>[44173.988336] sps:BAM 0x124c2000 enabled: ver:0x5, number of pipes:6 <3>[44174.399323] tcp_get_mem_size_pst: can not get dst interface! <3>[44174.402070] tcp_get_mem_size_pst: can not get dst interface! <3>[44174.911821] tcp_get_mem_size_pst: can not get dst interface! <3>[44174.922045] tcp_get_mem_size_pst: can not get dst interface! <3>[44174.936481] tcp_get_mem_size_pst: can not get dst interface! <3>[44174.948690] tcp_get_mem_size_pst: can not get dst interface! <3>[44174.964530] tcp_get_mem_size_pst: can not get dst interface! <3>[44174.972953] tcp_get_mem_size_pst: can not get dst interface! <3>[44175.478859] tcp_get_mem_size_pst: can not get dst interface! <3>[44175.488809] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.001246] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.015438] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.033750] tcp_get_mem_size_pst: can not get dst interface! <6>[44176.043425] SLIM_CL: skip reconfig sequence <3>[44176.046294] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.066162] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.069459] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.075258] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.078706] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.184887] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.187969] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.195477] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.199384] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.703519] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.711760] tcp_get_mem_size_pst: can not get dst interface! <3>[44176.732392] qtaguid: iface_stat: stat_update() lo not found <3>[44176.947927] qtaguid: iface_stat: stat_update() lo not found <3>[44177.231980] tcp_get_mem_size_pst: can not get dst interface! <3>[44177.242509] tcp_get_mem_size_pst: can not get dst interface! <3>[44177.262622] qtaguid: iface_stat: stat_update() lo not found <3>[44177.266590] tcp_get_mem_size_pst: can not get dst interface! <3>[44177.277058] tcp_get_mem_size_pst: can not get dst interface! <3>[44177.302482] qtaguid: iface_stat: stat_update() lo not found <3>[44177.306724] tcp_get_mem_size_pst: can not get dst interface! <3>[44177.312431] tcp_get_mem_size_pst: can not get dst interface! <6>[44179.547286] SLIM_CL: skip reconfig sequence <3>[44180.264575] tcp_get_mem_size_pst: can not get dst interface! <3>[44180.272328] tcp_get_mem_size_pst: can not get dst interface! <3>[44182.301780] tcp_get_mem_size_pst: can not get dst interface! <3>[44182.316277] tcp_get_mem_size_pst: can not get dst interface! <3>[44182.442143] tcp_get_mem_size_pst: can not get dst interface! <3>[44182.451055] tcp_get_mem_size_pst: can not get dst interface! <3>[44182.476723] qtaguid: iface_stat: stat_update() lo not found <3>[44182.492593] tcp_get_mem_size_pst: can not get dst interface! <3>[44182.512431] tcp_get_mem_size_pst: can not get dst interface! <3>[44183.017849] tcp_get_mem_size_pst: can not get dst interface! <3>[44183.020687] tcp_get_mem_size_pst: can not get dst interface! <3>[44183.026120] tcp_get_mem_size_pst: can not get dst interface! <3>[44183.029141] tcp_get_mem_size_pst: can not get dst interface! <3>[44183.136146] tcp_get_mem_size_pst: can not get dst interface! <3>[44183.139289] tcp_get_mem_size_pst: can not get dst interface! <4>[44183.188122] send sigkill to 20516 (ndroid.calendar), adj 705, size 11922 <4>[44183.188122] state:1 flag:0x400140 <3>[44185.149910] tcp_get_mem_size_pst: can not get dst interface! <3>[44185.180919] tcp_get_mem_size_pst: can not get dst interface! <3>[44185.301566] tcp_get_mem_size_pst: can not get dst interface! <3>[44185.304343] tcp_get_mem_size_pst: can not get dst interface! <3>[44186.316796] tcp_get_mem_size_pst: can not get dst interface! <3>[44186.333429] tcp_get_mem_size_pst: can not get dst interface! <3>[44186.452032] tcp_get_mem_size_pst: can not get dst interface! <3>[44186.464301] tcp_get_mem_size_pst: can not get dst interface! <3>[44188.497293] tcp_get_mem_size_pst: can not get dst interface! <3>[44188.514781] tcp_get_mem_size_pst: can not get dst interface! <3>[44188.632437] tcp_get_mem_size_pst: can not get dst interface! <3>[44188.642082] tcp_get_mem_size_pst: can not get dst interface! <3>[44189.679286] tcp_get_mem_size_pst: can not get dst interface! <3>[44189.694699] tcp_get_mem_size_pst: can not get dst interface! <3>[44189.814553] tcp_get_mem_size_pst: can not get dst interface! <3>[44189.824228] tcp_get_mem_size_pst: can not get dst interface! <3>[44191.860119] tcp_get_mem_size_pst: can not get dst interface! <3>[44191.874342] tcp_get_mem_size_pst: can not get dst interface! <3>[44191.994440] tcp_get_mem_size_pst: can not get dst interface! <3>[44192.004237] tcp_get_mem_size_pst: can not get dst interface! <3>[44193.041685] tcp_get_mem_size_pst: can not get dst interface! <3>[44193.056640] tcp_get_mem_size_pst: can not get dst interface! <3>[44193.186352] tcp_get_mem_size_pst: can not get dst interface! <3>[44193.196118] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.225998] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.240373] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.362515] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.372312] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.408571] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.428714] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.447148] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.459814] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.569077] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.582964] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.590960] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.595966] tcp_get_mem_size_pst: can not get dst interface! <3>[44195.692105] qtaguid: iface_stat: stat_update() lo not found <3>[44197.610310] tcp_get_mem_size_pst: can not get dst interface! <3>[44197.624899] tcp_get_mem_size_pst: can not get dst interface! <3>[44197.744752] tcp_get_mem_size_pst: can not get dst interface! <3>[44197.755374] tcp_get_mem_size_pst: can not get dst interface! <3>[44198.788976] tcp_get_mem_size_pst: can not get dst interface! <3>[44198.804115] tcp_get_mem_size_pst: can not get dst interface! <3>[44198.924273] tcp_get_mem_size_pst: can not get dst interface! <3>[44198.934772] tcp_get_mem_size_pst: can not get dst interface! <3>[44200.968009] tcp_get_mem_size_pst: can not get dst interface! <3>[44200.986443] tcp_get_mem_size_pst: can not get dst interface! <3>[44201.109440] tcp_get_mem_size_pst: can not get dst interface! <3>[44201.121282] tcp_get_mem_size_pst: can not get dst interface! <3>[44203.277119] tcp_get_mem_size_pst: can not get dst interface! <3>[44203.286977] tcp_get_mem_size_pst: can not get dst interface! <3>[44203.309349] qtaguid: iface_stat: stat_update() lo not found <6>[44204.365659] SLIM_CL: skip reconfig sequence <3>[44205.324640] tcp_get_mem_size_pst: can not get dst interface! <3>[44205.344600] tcp_get_mem_size_pst: can not get dst interface! <3>[44205.464698] tcp_get_mem_size_pst: can not get dst interface! <3>[44205.467383] tcp_get_mem_size_pst: can not get dst interface! <3>[44205.478218] tcp_get_mem_size_pst: can not get dst interface! <3>[44205.481606] tcp_get_mem_size_pst: can not get dst interface! <3>[44205.987420] tcp_get_mem_size_pst: can not get dst interface! <3>[44205.993616] tcp_get_mem_size_pst: can not get dst interface! <3>[44206.012080] qtaguid: iface_stat: stat_update() lo not found <3>[44206.511851] tcp_get_mem_size_pst: can not get dst interface! <3>[44206.521252] tcp_get_mem_size_pst: can not get dst interface! <3>[44206.545576] qtaguid: iface_stat: stat_update() lo not found <4>[44206.997675] [sched_delayed] process 25303 (shi.soundpicker) no longer affine to cpu1 <3>[44207.043974] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.051635] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.560287] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.570115] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.606495] qtaguid: iface_stat: stat_update() lo not found <3>[44207.611348] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.622274] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.638175] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.641044] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.651024] tcp_get_mem_size_pst: can not get dst interface! <3>[44207.653863] tcp_get_mem_size_pst: can not get dst interface! <6>[44208.716063] SLIM_CL: skip reconfig sequence <3>[44212.793371] tcp_get_mem_size_pst: can not get dst interface! <3>[44212.801917] tcp_get_mem_size_pst: can not get dst interface! <3>[44214.816567] tcp_get_mem_size_pst: can not get dst interface! <3>[44214.829935] tcp_get_mem_size_pst: can not get dst interface! <3>[44214.946065] tcp_get_mem_size_pst: can not get dst interface! <3>[44214.956167] tcp_get_mem_size_pst: can not get dst interface! <3>[44215.019222] qtaguid: iface_stat: stat_update() lo not found <3>[44215.023190] tcp_get_mem_size_pst: can not get dst interface! <3>[44215.029141] tcp_get_mem_size_pst: can not get dst interface! <3>[44215.541822] tcp_get_mem_size_pst: can not get dst interface! <3>[44215.552444] tcp_get_mem_size_pst: can not get dst interface! <3>[44215.671839] tcp_get_mem_size_pst: can not get dst interface! <3>[44215.704405] tcp_get_mem_size_pst: can not get dst interface! <6>[44218.958303] SLIM_CL: skip reconfig sequence <3>[44221.738831] tcp_get_mem_size_pst: can not get dst interface! <3>[44221.748567] tcp_get_mem_size_pst: can not get dst interface! <3>[44222.260669] tcp_get_mem_size_pst: can not get dst interface! <3>[44222.269337] tcp_get_mem_size_pst: can not get dst interface! <3>[44222.781438] tcp_get_mem_size_pst: can not get dst interface! <3>[44222.791418] tcp_get_mem_size_pst: can not get dst interface! <3>[44223.302177] tcp_get_mem_size_pst: can not get dst interface! <3>[44223.311699] tcp_get_mem_size_pst: can not get dst interface! <3>[44223.823617] tcp_get_mem_size_pst: can not get dst interface! <3>[44223.832193] tcp_get_mem_size_pst: can not get dst interface! <3>[44224.344569] tcp_get_mem_size_pst: can not get dst interface! <3>[44224.353115] tcp_get_mem_size_pst: can not get dst interface! <3>[44224.865613] tcp_get_mem_size_pst: can not get dst interface! <3>[44224.875044] tcp_get_mem_size_pst: can not get dst interface! <3>[44225.388641] tcp_get_mem_size_pst: can not get dst interface! <3>[44225.395538] tcp_get_mem_size_pst: can not get dst interface! <3>[44225.905747] tcp_get_mem_size_pst: can not get dst interface! <3>[44225.909746] tcp_get_mem_size_pst: can not get dst interface! <3>[44226.421603] tcp_get_mem_size_pst: can not get dst interface! <3>[44226.429233] tcp_get_mem_size_pst: can not get dst interface! <3>[44226.941059] tcp_get_mem_size_pst: can not get dst interface! <3>[44226.951162] tcp_get_mem_size_pst: can not get dst interface! <3>[44226.972221] qtaguid: iface_stat: stat_update() lo not found <3>[44227.472144] tcp_get_mem_size_pst: can not get dst interface! <3>[44227.481087] tcp_get_mem_size_pst: can not get dst interface! <3>[44228.017055] tcp_get_mem_size_pst: can not get dst interface! <3>[44228.025876] tcp_get_mem_size_pst: can not get dst interface! <3>[44228.543440] tcp_get_mem_size_pst: can not get dst interface! <3>[44228.552657] tcp_get_mem_size_pst: can not get dst interface! <3>[44229.062714] tcp_get_mem_size_pst: can not get dst interface! <3>[44229.072389] tcp_get_mem_size_pst: can not get dst interface! <3>[44229.582323] tcp_get_mem_size_pst: can not get dst interface! <3>[44229.590991] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.101658] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.110417] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.121984] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.133796] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.299155] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.325158] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.339717] tcp_get_mem_size_pst: can not get dst interface! <3>[44230.344112] tcp_get_mem_size_pst: can not get dst interface! <3>[44231.352047] tcp_get_mem_size_pst: can not get dst interface! <3>[44231.360623] tcp_get_mem_size_pst: can not get dst interface! <3>[44231.376738] qtaguid: iface_stat: stat_update() lo not found <3>[44231.876204] tcp_get_mem_size_pst: can not get dst interface! <3>[44231.886489] tcp_get_mem_size_pst: can not get dst interface! <3>[44231.902817] qtaguid: iface_stat: stat_update() lo not found <3>[44232.401887] tcp_get_mem_size_pst: can not get dst interface! <3>[44232.413149] tcp_get_mem_size_pst: can not get dst interface! <3>[44232.431522] qtaguid: iface_stat: stat_update() lo not found <3>[44232.931720] tcp_get_mem_size_pst: can not get dst interface! <3>[44232.941975] tcp_get_mem_size_pst: can not get dst interface! <3>[44232.958090] qtaguid: iface_stat: stat_update() lo not found <3>[44233.457708] tcp_get_mem_size_pst: can not get dst interface! <3>[44233.466285] tcp_get_mem_size_pst: can not get dst interface! <3>[44233.482003] qtaguid: iface_stat: stat_update() lo not found <3>[44233.981743] tcp_get_mem_size_pst: can not get dst interface! <3>[44233.993493] tcp_get_mem_size_pst: can not get dst interface! <3>[44234.011348] qtaguid: iface_stat: stat_update() lo not found <3>[44234.511119] tcp_get_mem_size_pst: can not get dst interface! <3>[44234.520489] tcp_get_mem_size_pst: can not get dst interface! <3>[44234.535535] qtaguid: iface_stat: stat_update() lo not found <3>[44235.035703] tcp_get_mem_size_pst: can not get dst interface! <3>[44235.057189] tcp_get_mem_size_pst: can not get dst interface! <3>[44235.082949] qtaguid: iface_stat: stat_update() lo not found <3>[44235.582964] tcp_get_mem_size_pst: can not get dst interface! <3>[44235.591418] tcp_get_mem_size_pst: can not get dst interface! <3>[44235.608723] qtaguid: iface_stat: stat_update() lo not found <3>[44236.108128] tcp_get_mem_size_pst: can not get dst interface! <3>[44236.116796] tcp_get_mem_size_pst: can not get dst interface! <3>[44236.133582] qtaguid: iface_stat: stat_update() lo not found <3>[44236.633689] tcp_get_mem_size_pst: can not get dst interface! <3>[44236.644859] tcp_get_mem_size_pst: can not get dst interface! <3>[44236.661829] qtaguid: iface_stat: stat_update() lo not found <3>[44237.161569] tcp_get_mem_size_pst: can not get dst interface! <3>[44237.172007] tcp_get_mem_size_pst: can not get dst interface! <3>[44237.189038] qtaguid: iface_stat: stat_update() lo not found <3>[44237.689114] tcp_get_mem_size_pst: can not get dst interface! <3>[44237.697446] tcp_get_mem_size_pst: can not get dst interface! <3>[44237.714629] qtaguid: iface_stat: stat_update() lo not found <3>[44238.214675] tcp_get_mem_size_pst: can not get dst interface! <3>[44238.223434] tcp_get_mem_size_pst: can not get dst interface! <3>[44238.239701] qtaguid: iface_stat: stat_update() lo not found <3>[44238.739167] tcp_get_mem_size_pst: can not get dst interface! <3>[44238.747591] tcp_get_mem_size_pst: can not get dst interface! <3>[44238.763339] qtaguid: iface_stat: stat_update() lo not found <3>[44239.263599] tcp_get_mem_size_pst: can not get dst interface! <3>[44239.273030] tcp_get_mem_size_pst: can not get dst interface! <3>[44239.288412] qtaguid: iface_stat: stat_update() lo not found <3>[44239.789160] tcp_get_mem_size_pst: can not get dst interface! <3>[44239.797614] tcp_get_mem_size_pst: can not get dst interface! <3>[44239.813851] qtaguid: iface_stat: stat_update() lo not found <3>[44239.815834] tcp_get_mem_size_pst: can not get dst interface! <3>[44239.827432] tcp_get_mem_size_pst: can not get dst interface! <3>[44239.841472] qtaguid: iface_stat: stat_update() lo not found <3>[44241.994318] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.005305] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.028317] qtaguid: iface_stat: stat_update() lo not found <3>[44242.030362] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.043577] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.066834] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.071565] qtaguid: iface_stat: stat_update() lo not found <3>[44242.091647] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.104160] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.106907] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.118902] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.122015] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.129859] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.132392] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.257647] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.288168] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.318963] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.324853] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.436558] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.438908] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.442387] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.444707] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.559219] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.561630] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.564041] qtaguid: iface_stat: stat_update() lo not found <3>[44242.565506] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.569474] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.676509] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.679927] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.685665] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.689846] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.695584] qtaguid: iface_stat: stat_update() lo not found <3>[44242.696683] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.702634] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.709257] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.714537] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.721191] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.725616] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.735261] tcp_get_mem_size_pst: can not get dst interface! <3>[44242.742219] tcp_get_mem_size_pst: can not get dst interface! <3>[44244.679195] tcp_get_mem_size_pst: can not get dst interface! <3>[44244.687740] tcp_get_mem_size_pst: can not get dst interface! <3>[44245.719176] tcp_get_mem_size_pst: can not get dst interface! <3>[44245.730316] tcp_get_mem_size_pst: can not get dst interface! <3>[44245.745607] qtaguid: iface_stat: stat_update() lo not found <3>[44245.750338] tcp_get_mem_size_pst: can not get dst interface! <3>[44245.760898] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.777470] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.786871] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.806678] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.820840] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.840037] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.854351] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.972007] tcp_get_mem_size_pst: can not get dst interface! <3>[44246.974937] tcp_get_mem_size_pst: can not get dst interface! <6>[44250.184765] SLIM_CL: skip reconfig sequence <3>[44252.026944] tcp_get_mem_size_pst: can not get dst interface! <3>[44252.041227] tcp_get_mem_size_pst: can not get dst interface! <3>[44252.063629] tcp_get_mem_size_pst: can not get dst interface! <3>[44252.076448] tcp_get_mem_size_pst: can not get dst interface! <3>[44252.193066] tcp_get_mem_size_pst: can not get dst interface! <3>[44252.201703] tcp_get_mem_size_pst: can not get dst interface! <3>[44253.277089] tcp_get_mem_size_pst: can not get dst interface! <3>[44253.326227] tcp_get_mem_size_pst: can not get dst interface! <3>[44253.831949] tcp_get_mem_size_pst: can not get dst interface! <3>[44253.863599] tcp_get_mem_size_pst: can not get dst interface! <3>[44253.892868] tcp_get_mem_size_pst: can not get dst interface! <3>[44253.910142] tcp_get_mem_size_pst: can not get dst interface! <3>[44254.918230] tcp_get_mem_size_pst: can not get dst interface! <3>[44254.928577] tcp_get_mem_size_pst: can not get dst interface! <3>[44255.442662] tcp_get_mem_size_pst: can not get dst interface! <3>[44255.452459] tcp_get_mem_size_pst: can not get dst interface! <6>[44255.544112] SLIM_CL: skip reconfig sequence <3>[44255.968436] tcp_get_mem_size_pst: can not get dst interface! <3>[44255.977318] tcp_get_mem_size_pst: can not get dst interface! <3>[44256.494852] tcp_get_mem_size_pst: can not get dst interface! <3>[44256.504649] tcp_get_mem_size_pst: can not get dst interface! <3>[44257.017849] tcp_get_mem_size_pst: can not get dst interface! <3>[44257.026455] tcp_get_mem_size_pst: can not get dst interface! <3>[44257.542585] tcp_get_mem_size_pst: can not get dst interface! <3>[44257.551284] tcp_get_mem_size_pst: can not get dst interface! <3>[44258.065430] tcp_get_mem_size_pst: can not get dst interface! <3>[44258.074006] tcp_get_mem_size_pst: can not get dst interface! <3>[44258.589343] tcp_get_mem_size_pst: can not get dst interface! <3>[44258.598163] tcp_get_mem_size_pst: can not get dst interface! <3>[44259.112309] tcp_get_mem_size_pst: can not get dst interface! <3>[44259.121191] tcp_get_mem_size_pst: can not get dst interface! <3>[44259.635459] tcp_get_mem_size_pst: can not get dst interface! <3>[44259.644340] tcp_get_mem_size_pst: can not get dst interface! <3>[44260.157785] tcp_get_mem_size_pst: can not get dst interface! <3>[44260.167215] tcp_get_mem_size_pst: can not get dst interface! <3>[44260.679714] tcp_get_mem_size_pst: can not get dst interface! <3>[44260.689297] tcp_get_mem_size_pst: can not get dst interface! <3>[44261.203687] tcp_get_mem_size_pst: can not get dst interface! <3>[44261.212721] tcp_get_mem_size_pst: can not get dst interface! <3>[44261.725433] tcp_get_mem_size_pst: can not get dst interface! <3>[44261.735383] tcp_get_mem_size_pst: can not get dst interface! <3>[44262.248583] tcp_get_mem_size_pst: can not get dst interface! <3>[44262.271717] tcp_get_mem_size_pst: can not get dst interface! <3>[44262.784154] tcp_get_mem_size_pst: can not get dst interface! <3>[44262.793677] tcp_get_mem_size_pst: can not get dst interface! <3>[44263.305137] tcp_get_mem_size_pst: can not get dst interface! <3>[44263.313927] tcp_get_mem_size_pst: can not get dst interface! <3>[44263.327081] tcp_get_mem_size_pst: can not get dst interface! <3>[44263.338923] tcp_get_mem_size_pst: can not get dst interface! <3>[44263.517406] tcp_get_mem_size_pst: can not get dst interface! <3>[44263.520977] tcp_get_mem_size_pst: can not get dst interface! <3>[44264.026883] tcp_get_mem_size_pst: can not get dst interface! <3>[44264.035520] tcp_get_mem_size_pst: can not get dst interface! <3>[44264.051421] tcp_get_mem_size_pst: can not get dst interface! <3>[44264.062958] tcp_get_mem_size_pst: can not get dst interface! <3>[44265.077425] tcp_get_mem_size_pst: can not get dst interface! <3>[44265.091678] tcp_get_mem_size_pst: can not get dst interface! <3>[44265.210127] tcp_get_mem_size_pst: can not get dst interface! <3>[44265.218581] tcp_get_mem_size_pst: can not get dst interface! <3>[44266.269062] tcp_get_mem_size_pst: can not get dst interface! <3>[44266.327814] tcp_get_mem_size_pst: can not get dst interface! <3>[44266.831308] tcp_get_mem_size_pst: can not get dst interface! <3>[44266.837107] tcp_get_mem_size_pst: can not get dst interface! <3>[44266.848705] tcp_get_mem_size_pst: can not get dst interface! <3>[44266.856945] tcp_get_mem_size_pst: can not get dst interface! <3>[44267.871473] tcp_get_mem_size_pst: can not get dst interface! <3>[44267.882125] tcp_get_mem_size_pst: can not get dst interface! <3>[44268.395721] tcp_get_mem_size_pst: can not get dst interface! <3>[44268.405427] tcp_get_mem_size_pst: can not get dst interface! <6>[44268.583574] SLIM_CL: skip reconfig sequence <3>[44268.938526] tcp_get_mem_size_pst: can not get dst interface! <3>[44268.947530] tcp_get_mem_size_pst: can not get dst interface! <3>[44269.459173] tcp_get_mem_size_pst: can not get dst interface! <3>[44269.467902] tcp_get_mem_size_pst: can not get dst interface! <3>[44269.978966] tcp_get_mem_size_pst: can not get dst interface! <3>[44269.988946] tcp_get_mem_size_pst: can not get dst interface! <3>[44270.505656] tcp_get_mem_size_pst: can not get dst interface! <3>[44270.515575] tcp_get_mem_size_pst: can not get dst interface! <3>[44271.026761] tcp_get_mem_size_pst: can not get dst interface! <3>[44271.035459] tcp_get_mem_size_pst: can not get dst interface! <3>[44271.547255] tcp_get_mem_size_pst: can not get dst interface! <3>[44271.556839] tcp_get_mem_size_pst: can not get dst interface! <3>[44272.069337] tcp_get_mem_size_pst: can not get dst interface! <3>[44272.077974] tcp_get_mem_size_pst: can not get dst interface! <3>[44272.589099] tcp_get_mem_size_pst: can not get dst interface! <3>[44272.597583] tcp_get_mem_size_pst: can not get dst interface! <3>[44273.109257] tcp_get_mem_size_pst: can not get dst interface! <3>[44273.118627] tcp_get_mem_size_pst: can not get dst interface! <3>[44273.638969] tcp_get_mem_size_pst: can not get dst interface! <3>[44273.649590] tcp_get_mem_size_pst: can not get dst interface! <3>[44274.169749] tcp_get_mem_size_pst: can not get dst interface! <3>[44274.178722] tcp_get_mem_size_pst: can not get dst interface! <3>[44274.690548] tcp_get_mem_size_pst: can not get dst interface! <3>[44274.699338] tcp_get_mem_size_pst: can not get dst interface! <3>[44275.211867] tcp_get_mem_size_pst: can not get dst interface! <3>[44275.221572] tcp_get_mem_size_pst: can not get dst interface! <3>[44275.733460] tcp_get_mem_size_pst: can not get dst interface! <3>[44275.742921] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.256640] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.265583] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.278615] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.290335] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.544356] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.554183] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.562241] tcp_get_mem_size_pst: can not get dst interface! <3>[44276.569016] tcp_get_mem_size_pst: can not get dst interface! <3>[44277.582628] tcp_get_mem_size_pst: can not get dst interface! <3>[44277.591174] tcp_get_mem_size_pst: can not get dst interface! <3>[44277.616201] tcp_get_mem_size_pst: can not get dst interface! <3>[44277.624777] tcp_get_mem_size_pst: can not get dst interface! <3>[44277.742616] tcp_get_mem_size_pst: can not get dst interface! <3>[44277.769718] tcp_get_mem_size_pst: can not get dst interface! <3>[44278.862256] tcp_get_mem_size_pst: can not get dst interface! <3>[44278.876631] tcp_get_mem_size_pst: can not get dst interface! <3>[44279.379942] tcp_get_mem_size_pst: can not get dst interface! <3>[44279.382964] tcp_get_mem_size_pst: can not get dst interface! <6>[44281.104618] SLIM_CL: skip reconfig sequence <3>[44281.394379] tcp_get_mem_size_pst: can not get dst interface! <3>[44281.408143] tcp_get_mem_size_pst: can not get dst interface! <3>[44281.432865] qtaguid: iface_stat: stat_update() lo not found <3>[44281.538831] tcp_get_mem_size_pst: can not get dst interface! <3>[44281.559982] tcp_get_mem_size_pst: can not get dst interface! <3>[44281.597400] qtaguid: iface_stat: stat_update() lo not found <3>[44282.614308] tcp_get_mem_size_pst: can not get dst interface! <3>[44282.643516] tcp_get_mem_size_pst: can not get dst interface! <3>[44282.695187] qtaguid: iface_stat: stat_update() lo not found <3>[44283.177928] tcp_get_mem_size_pst: can not get dst interface! <3>[44283.187573] tcp_get_mem_size_pst: can not get dst interface! <3>[44283.216384] tcp_get_mem_size_pst: can not get dst interface! <3>[44283.249010] tcp_get_mem_size_pst: can not get dst interface! <3>[44283.373045] tcp_get_mem_size_pst: can not get dst interface! <3>[44283.375731] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.495340] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.505045] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.526471] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.542616] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.662378] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.672480] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.717406] tcp_get_mem_size_pst: can not get dst interface! <3>[44285.722534] tcp_get_mem_size_pst: can not get dst interface! <3>[44286.228104] tcp_get_mem_size_pst: can not get dst interface! <3>[44286.230179] tcp_get_mem_size_pst: can not get dst interface! <3>[44286.233384] qtaguid: iface_stat: stat_update() lo not found <6>[44288.934894] SLIM_CL: skip reconfig sequence <3>[44292.696713] tcp_get_mem_size_pst: can not get dst interface! <3>[44292.710112] tcp_get_mem_size_pst: can not get dst interface! <3>[44292.829294] tcp_get_mem_size_pst: can not get dst interface! <3>[44292.838694] tcp_get_mem_size_pst: can not get dst interface! <3>[44292.865522] qtaguid: iface_stat: stat_update() lo not found <3>[44292.873945] tcp_get_mem_size_pst: can not get dst interface! <3>[44292.896835] tcp_get_mem_size_pst: can not get dst interface! <3>[44293.402650] tcp_get_mem_size_pst: can not get dst interface! <3>[44293.405671] tcp_get_mem_size_pst: can not get dst interface! <3>[44293.418978] qtaguid: iface_stat: stat_update() lo not found <3>[44293.523327] tcp_get_mem_size_pst: can not get dst interface! <3>[44293.530438] tcp_get_mem_size_pst: can not get dst interface! <3>[44293.550460] qtaguid: iface_stat: stat_update() lo not found <6>[44296.798560] SLIM_CL: skip reconfig sequence <3>[44299.964255] tcp_get_mem_size_pst: can not get dst interface! <3>[44299.977348] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.102848] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.111851] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.135352] qtaguid: iface_stat: stat_update() lo not found <3>[44300.150368] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.167093] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.672602] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.676051] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.787908] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.793310] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.800666] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.803535] tcp_get_mem_size_pst: can not get dst interface! <3>[44300.809700] qtaguid: iface_stat: stat_update() lo not found <3>[44301.309288] tcp_get_mem_size_pst: can not get dst interface! <3>[44301.318658] tcp_get_mem_size_pst: can not get dst interface! <3>[44301.829813] tcp_get_mem_size_pst: can not get dst interface! <3>[44301.837931] tcp_get_mem_size_pst: can not get dst interface! <6>[44304.008174] SLIM_CL: skip reconfig sequence <3>[44306.155770] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.169718] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.187786] qtaguid: iface_stat: stat_update() lo not found <3>[44306.293295] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.301688] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.329706] qtaguid: iface_stat: stat_update() lo not found <3>[44306.339167] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.373289] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.878798] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.880873] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.886459] qtaguid: iface_stat: stat_update() lo not found <4>[44306.927875] send sigkill to 16960 (n.conversations), adj 764, size 11887 <4>[44306.927875] state:1 flag:0x400140 <3>[44306.986901] tcp_get_mem_size_pst: can not get dst interface! <3>[44306.989343] tcp_get_mem_size_pst: can not get dst interface! <3>[44310.110631] tcp_get_mem_size_pst: can not get dst interface! <3>[44310.140632] tcp_get_mem_size_pst: can not get dst interface! <3>[44310.164163] qtaguid: iface_stat: stat_update() lo not found <6>[44310.203809] SLIM_CL: skip reconfig sequence <3>[44310.265430] tcp_get_mem_size_pst: can not get dst interface! <3>[44310.268299] tcp_get_mem_size_pst: can not get dst interface! <3>[44311.280202] tcp_get_mem_size_pst: can not get dst interface! <3>[44311.295462] tcp_get_mem_size_pst: can not get dst interface! <6>[44313.599109] SLIM_CL: skip reconfig sequence <3>[44315.595569] tcp_get_mem_size_pst: can not get dst interface! <3>[44315.604420] tcp_get_mem_size_pst: can not get dst interface! <3>[44315.619833] qtaguid: iface_stat: stat_update() lo not found <3>[44317.621725] tcp_get_mem_size_pst: can not get dst interface! <3>[44317.634818] tcp_get_mem_size_pst: can not get dst interface! <3>[44317.654748] qtaguid: iface_stat: stat_update() lo not found <3>[44317.760318] tcp_get_mem_size_pst: can not get dst interface! <3>[44317.769596] tcp_get_mem_size_pst: can not get dst interface! <3>[44317.793249] qtaguid: iface_stat: stat_update() lo not found <3>[44317.809425] tcp_get_mem_size_pst: can not get dst interface! <3>[44317.834971] tcp_get_mem_size_pst: can not get dst interface! <3>[44318.346553] tcp_get_mem_size_pst: can not get dst interface! <3>[44318.352016] tcp_get_mem_size_pst: can not get dst interface! <3>[44320.528485] tcp_get_mem_size_pst: can not get dst interface! <3>[44320.538130] tcp_get_mem_size_pst: can not get dst interface! <3>[44320.559494] qtaguid: iface_stat: stat_update() lo not found <6>[44321.094485] SLIM_CL: skip reconfig sequence <3>[44322.560287] tcp_get_mem_size_pst: can not get dst interface! <3>[44322.573869] tcp_get_mem_size_pst: can not get dst interface! <3>[44322.594104] qtaguid: iface_stat: stat_update() lo not found <3>[44322.698758] tcp_get_mem_size_pst: can not get dst interface! <3>[44322.708586] tcp_get_mem_size_pst: can not get dst interface! <3>[44322.729370] qtaguid: iface_stat: stat_update() lo not found <3>[44325.962668] tcp_get_mem_size_pst: can not get dst interface! <3>[44325.970756] tcp_get_mem_size_pst: can not get dst interface! <6>[44326.054137] SLIM_CL: skip reconfig sequence <3>[44327.985345] tcp_get_mem_size_pst: can not get dst interface! <3>[44327.999537] tcp_get_mem_size_pst: can not get dst interface! <3>[44328.121649] tcp_get_mem_size_pst: can not get dst interface! <3>[44328.131751] tcp_get_mem_size_pst: can not get dst interface! <4>[44329.410463] send sigkill to 16852 (viders.calendar), adj 764, size 8197 <4>[44329.410524] state:1 flag:0x400140 <4>[44329.560531] send sigkill to 23753 (nyericsson.dlna), adj 764, size 7853 <4>[44329.560684] state:1 flag:0x400140 <4>[44329.606678] send sigkill to 17128 (social.services), adj 764, size 7798 <4>[44329.606800] state:1 flag:0x400140 <4>[44329.704649] send sigkill to 19621 (ination.service), adj 764, size 7493 <4>[44329.704771] state:1 flag:0x400140 <4>[44329.761447] send sigkill to 19583 (yericsson.music), adj 705, size 15253 <4>[44329.761569] state:1 flag:0x400140 <1>[44330.850628] Unable to handle kernel paging request at virtual address 4020841c <1>[44330.850750] pgd = c490c000 <1>[44330.850841] [4020841c] *pgd=84451831, *pte=bf05859d, *ppte=00000000 <0>[44330.851055] Internal error: Oops: 17 [#1] PREEMPT SMP ARM <4>[44330.851146] Modules linked in: hid_sony(O) <4>[44330.851330] CPU: 1 Tainted: G W O (3.4.0-perf-gf496dca-01162-gcbcc62b #1) <4>[44330.851421] PC is at vector_swi+0x28/0x88 <4>[44330.851482] LR is at 0x40208420 <4>[44330.851604] pc : [<c000dfe8>] lr : [<40208420>] psr: 60000093 <4>[44330.851604] sp : e0601fb0 ip : 40092f78 fp : befcd6fc <4>[44330.851757] r10: 4005a040 r9 : 4012fa70 r8 : 60000010 <4>[44330.851818] r7 : 00000107 r6 : 00000003 r5 : 4005a030 r4 : 5746d378 <4>[44330.851909] r3 : 5883fbf8 r2 : 00000000 r1 : befcd6d0 r0 : 00000001 <4>[44330.851971] Flags: nZCv IRQs off FIQs on Mode SVC_32 ISA ARM Segment user <4>[44330.852093] Control: 10c5787d Table: 84b0c06a DAC: 00000015 <4>[44330.852154] <4>[44330.852154] PC: 0xc000df68: <4>[44330.852306] df68 e31100ff 1afffff0 e59d1040 e5bde03c e16ff001 f57ff01f e95d7fff e1a00000 <4>[44330.852825] df88 e28dd00c e1b0f00e eb025aba e1a096ad e1a09689 e5991000 e3a08001 e3110c03 <4>[44330.853405] dfa8 0affffec e1a0100d e3a00001 eb000911 eaffffe8 e320f000 e24dd048 e88d1fff <4>[44330.853954] dfc8 e28d803c e9486000 e14f8000 e58de03c e58d8040 e58d0044 e3180020 13a0a000 <4>[44330.854534] dfe8 051ea004 e59fc0ac e59cc000 ee01cf10 f1080080 e1a096ad e1a09689 e28f809c <4>[44330.855053] e008 e3daa4ff 122a7609 159f808c e599a000 e92d0030 e31a0c03 1a000008 e3570f5f <4>[44330.855602] e028 e24fee13 3798f107 e28d1008 e3a08000 e357080f e2270000 2a000fac ea022fd4 <4>[44330.856152] e048 e1a02007 e28d1008 e3a00000 eb0008e9 e28fe014 e1a07000 e28d1008 e3570f5f <4>[44330.856732] <4>[44330.856732] SP: 0xe0601f30: <4>[44330.856823] 1f30 00000000 00000000 c0d44f98 00000001 e18fce48 00000002 e565fa80 00000000 <4>[44330.857373] 1f50 c000dfe8 60000093 ffffffff e0601f9c 60000010 c0731518 00000001 befcd6d0 <4>[44330.857891] 1f70 00000000 5883fbf8 5746d378 4005a030 00000003 00000107 60000010 4012fa70 <4>[44330.858471] 1f90 4005a040 befcd6fc 40092f78 e0601fb0 40208420 c000dfe8 60000093 ffffffff <4>[44330.859021] 1fb0 00000001 befcd6d0 00000000 5883fbf8 5746d378 4005a030 00000003 00000107 <4>[44330.859570] 1fd0 befcd6e8 4012fa70 4005a040 befcd6fc 40092f78 befcd6c8 4008aef9 40208420 <4>[44330.860089] 1ff0 60000010 00000001 ffe6e6e6 ffe6e6e6 00000000 00000000 00000000 00000000 <4>[44330.860669] 2010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 <0>[44330.861218] Process ndroid.settings (pid: 25518, stack limit = 0xe06002f0) <0>[44330.861279] Stack: (0xe0601fb0 to 0xe0602000) <0>[44330.861401] 1fa0: 00000001 befcd6d0 00000000 5883fbf8 <0>[44330.861462] 1fc0: 5746d378 4005a030 00000003 00000107 befcd6e8 4012fa70 4005a040 befcd6fc <0>[44330.861584] 1fe0: 40092f78 befcd6c8 4008aef9 40208420 60000010 00000001 ffe6e6e6 ffe6e6e6 <0>[44330.861707] Code: e58d8040 e58d0044 e3180020 13a0a000 (051ea004) <4>[44330.861890] ---[ end trace da227214a82491c0 ]--- <0>[44330.862012] Kernel panic - not syncing: Fatal exception <2>[44330.862073] CPU0: stopping <4>[44330.862195] [<c0014df8>] (unwind_backtrace+0x0/0x11c) from [<c001339c>] (handle_IPI+0x110/0x224) <4>[44330.862256] [<c001339c>] (handle_IPI+0x110/0x224) from [<c000868c>] (gic_handle_irq+0x104/0x110) <4>[44330.862378] [<c000868c>] (gic_handle_irq+0x104/0x110) from [<c0731580>] (__irq_svc+0x40/0x70) <4>[44330.862470] Exception stack(0xc7439b10 to 0xc7439b58) <4>[44330.862531] 9b00: 00000001 bf05f000 00000004 1a55b000 <4>[44330.862653] 9b20: bf05f59d d2b4ac08 000bf05f ca5ca03c 00000000 c7439c24 4020f000 00000001 <4>[44330.862744] 9b40: c0f2ab50 c7439b58 c0123038 c0123040 00000113 ffffffff <4>[44330.862836] [<c0731580>] (__irq_svc+0x40/0x70) from [<c0123040>] (memblock_is_memory+0x18/0x20) <4>[44330.862958] [<c0123040>] (memblock_is_memory+0x18/0x20) from [<c00198b4>] (__sync_icache_dcache+0x40/0x9c) <4>[44330.863049] [<c00198b4>] (__sync_icache_dcache+0x40/0x9c) from [<c0121a44>] (ptep_clear_flush_young+0x3c/0x60) <4>[44330.863171] [<c0121a44>] (ptep_clear_flush_young+0x3c/0x60) from [<c011d3b0>] (page_referenced_one+0x6c/0xfc) <4>[44330.863294] [<c011d3b0>] (page_referenced_one+0x6c/0xfc) from [<c011e9e4>] (page_referenced+0x1a8/0x200) <4>[44330.863416] [<c011e9e4>] (page_referenced+0x1a8/0x200) from [<c010522c>] (shrink_active_list.isra.49+0x1ec/0x2e8) <4>[44330.863477] [<c010522c>] (shrink_active_list.isra.49+0x1ec/0x2e8) from [<c0106554>] (shrink_mem_cgroup_zone+0x338/0x4c4) <4>[44330.863599] [<c0106554>] (shrink_mem_cgroup_zone+0x338/0x4c4) from [<c010740c>] (try_to_free_pages+0x2a0/0x570) <4>[44330.863690] [<c010740c>] (try_to_free_pages+0x2a0/0x570) from [<c00fbff0>] (__alloc_pages_nodemask+0x424/0x758) <4>[44330.863812] [<c00fbff0>] (__alloc_pages_nodemask+0x424/0x758) from [<c0116dcc>] (handle_pte_fault+0x184/0x7c8) <4>[44330.863934] [<c0116dcc>] (handle_pte_fault+0x184/0x7c8) from [<c011751c>] (handle_mm_fault+0x10c/0x128) <4>[44330.864057] [<c011751c>] (handle_mm_fault+0x10c/0x128) from [<c0732cc0>] (do_page_fault+0x180/0x3c0) <4>[44330.864148] [<c0732cc0>] (do_page_fault+0x180/0x3c0) from [<c000847c>] (do_DataAbort+0x134/0x1a8) <4>[44330.864270] [<c000847c>] (do_DataAbort+0x134/0x1a8) from [<c07316f4>] (__dabt_usr+0x34/0x40) <4>[44330.864331] Exception stack(0xc7439fb0 to 0xc7439ff8) <4>[44330.864453] 9fa0: 40baa000 40fab040 0002d440 00000000 <4>[44330.864545] 9fc0: 41ed0f10 00000001 408d72c0 41ed0f2c 0000001c 00000000 40fab400 00000001 <4>[44330.864606] 9fe0: 00000380 59c70e10 00000400 40209364 20000010 ffffffff <3>[44330.864728] &@running_process@cpu0:*GC* <3>[44330.965048] wcnss_8960: crash shutdown : 0 <3>[44336.972831] mdm_panic_prep: MDM2AP_STATUS never went low <6>[44336.982903] amsslog: crash log size=16384 <3>[44336.983025] &@panic_name@:*ndroid.settings* <0>[44336.983208] Rebooting in 5 seconds.. <0>[44341.989617] Restarting Linux version 3.4.0-perf-gf496dca-01162-gcbcc62b (BuildUser@BuildHost) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Apr 28 09:22:00 2013 <0>[44341.989617] <4>[44341.989831] <0>[44341.989892] Restarting Linux version 3.4.0-perf-gf496dca-01162-gcbcc62b (BuildUser@BuildHost) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Apr 28 09:22:00 2013 <0>[44341.989892] <5>[44341.990106] Going down for restart now [-- Attachment #3: stack.txt --] [-- Type: text/plain, Size: 747 bytes --] crash_noites_save_this_cpu(type = CRASH_NOTE_CRASHING = 0x2, cpu = 0x1) update_crash_notes(?, ?, ?) notifier_call_chain(?, val = 0x0, v = 0xC0ECBE9C, nr_to_call = 0x5, nr_calls = 0x0) __atomic_notifier_call_chain(nh = 0xC0ECC29C, val = 0x0, v = 0xC0ECBE9C, nr_to_call = 0xFFFFFFFF, nr_calls = 0x0) atomic_notifier_call_chain(?, ?, ?) panic(fmt = 0xC098BC02) die(?, regs = 0xE0601F68, err = 0x17) __do_kernel_fault.part.8(mm = 0xC73E7DC0, addr = 0x4020841C, fsr = 0x17, regs = 0xE0601F68) do_page_fault(addr = 0xC73E7DC0, fsr = 0x17, regs = 0x4020841C) do_DataAbort(addr = 0x4020841C, fsr = 0x17, regs = 0xE0601F68) __dabt_svc(asm) exception vector_swi(asm) ret_fast_syscall(asm) exception NUR:0xFFFF:0x40208420(asm) end of frame ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-29 9:50 ` Wang, Yalin @ 2013-05-30 1:41 ` Wang, Yalin 2013-05-30 9:09 ` Will Deacon 0 siblings, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-05-30 1:41 UTC (permalink / raw) To: Wang, Yalin, 'Will Deacon', 'richard -rw- weinberger' Cc: 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will, Have you received the log files? And is there someone looking at this issue now ? This issue happened on Qcom Scorpoin CPUs, And it just happened in our stability test occasionally . If you have some patch for this issue, I can do the test for it . Thanks for your help very much ! -----Original Message----- From: Wang, Yalin Sent: Wednesday, May 29, 2013 5:51 PM To: 'Will Deacon'; richard -rw- weinberger Cc: linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org; linux-arm-kernel@lists.infradead.org Subject: RE: A bug about system call on ARM Hi This is kernel.log and the stack which is recovered by Trace32 tools. Please have a look at it . Thanks -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Wednesday, May 29, 2013 5:48 PM To: richard -rw- weinberger Cc: Wang, Yalin; linux-arch@vger.kernel.org; linux-kernel@vger.kernel.org; linux-arm-kernel@lists.infradead.org Subject: Re: A bug about system call on ARM Hello, On Wed, May 29, 2013 at 09:46:42AM +0100, richard -rw- weinberger wrote: > On Wed, May 29, 2013 at 10:24 AM, Wang, Yalin <Yalin.Wang@sonymobile.com> wrote: > > I have download the latest linux kernel code 3.9.4 And Compare with > > 3.4.0 kernel . > > > > It seems there is no change for this part , So it will still happen > > . > > Does anyone know who is responsible for arm arch part kernel code ? > > See MAINTAINERS file. > CC'ing linux-arm-kernel@lists.infradead.org Cheers for adding us to CC. > >> #ifdef CONFIG_ARM_THUMB > >> tst r8, #PSR_T_BIT > >> movne r10, #0 @ no thumb OABI emulation > >> ldreq r10, [lr, #-4] @ get SWI instruction // crash at this instruction, when get SWI instruction Do you have the panic log please? Also, which SoC are you using and how are you reproducing this? > >> ldr r10, [lr, #-4] @ get SWI instruction > >> A710( and ip, r10, #0x0f000000 @ check for SWI ) > >> A710( teq ip, #0x0f000000 ) > >> A710( bne .Larm710bug ) > >> #endif > >> #ifdef CONFIG_CPU_ENDIAN_BE8 > >> rev r10, r10 @ little endian instruction > >> #endif > >> > >> /****************************************************************** > >> *** > >> ******************************/ > >> > >> Then reason why it will crash when get SWI instruction is maybe > >> This page is clear to aged by kernel, But this MMU fault happpened > >> in kernel, So the kernel do_page_fault function will not clear this > >> page to young, So that will crash . Sounds like we might need some USER annotations around the instruction loads, but we should also rework the code so that we re-enable interrupts first. Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-30 1:41 ` Wang, Yalin @ 2013-05-30 9:09 ` Will Deacon 2013-05-30 11:41 ` Will Deacon 0 siblings, 1 reply; 36+ messages in thread From: Will Deacon @ 2013-05-30 9:09 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Thu, May 30, 2013 at 02:41:42AM +0100, Wang, Yalin wrote: > Hi Will, Hello, > Have you received the log files? Yep, and you seem to be completely correct: CPU0 ages the page from which CPU1 just executed a system call, so we explode trying to load the swi instruction in order to retrieve the immediate. > And is there someone looking at this issue now ? It's on my list, but I'm pretty busy right now and OABI-compat isn't high priority. Are you actually running OABI binaries? If not, you can simply turn that option off (in fact, a quick fix to this issue is to make that depend on !SMP). > This issue happened on Qcom Scorpoin CPUs, > And it just happened in our stability test occasionally . > > If you have some patch for this issue, > I can do the test for it . I'll have a look at cooking something which uses an exception table entry to rewind the PC and retry the system call. That's simpler than directly injecting a user page fault from the system call path. Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-30 9:09 ` Will Deacon @ 2013-05-30 11:41 ` Will Deacon 2013-05-30 11:41 ` Will Deacon ` (3 more replies) 0 siblings, 4 replies; 36+ messages in thread From: Will Deacon @ 2013-05-30 11:41 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Thu, May 30, 2013 at 10:09:49AM +0100, Will Deacon wrote: > On Thu, May 30, 2013 at 02:41:42AM +0100, Wang, Yalin wrote: > > If you have some patch for this issue, > > I can do the test for it . > > I'll have a look at cooking something which uses an exception table entry > to rewind the PC and retry the system call. That's simpler than directly > injecting a user page fault from the system call path. Ok, please can you try the following? Will --->8 diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index bc5bc0a..855926e 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S @@ -361,6 +361,15 @@ ENTRY(vector_swi) str r8, [sp, #S_PSR] @ Save CPSR str r0, [sp, #S_OLD_R0] @ Save OLD_R0 zero_fp + enable_irq + ct_user_exit + +#ifdef CONFIG_ALIGNMENT_TRAP + ldr ip, __cr_alignment + ldr ip, [ip] + mcr p15, 0, ip, c1, c0 @ update control register +#endif + get_thread_info tsk /* * Get the system call number. @@ -375,9 +384,9 @@ ENTRY(vector_swi) #ifdef CONFIG_ARM_THUMB tst r8, #PSR_T_BIT movne r10, #0 @ no thumb OABI emulation - ldreq r10, [lr, #-4] @ get SWI instruction + USER( ldreq r10, [lr, #-4] ) @ get SWI instruction #else - ldr r10, [lr, #-4] @ get SWI instruction + USER( ldr r10, [lr, #-4] ) @ get SWI instruction #endif #ifdef CONFIG_CPU_ENDIAN_BE8 rev r10, r10 @ little endian instruction @@ -392,22 +401,13 @@ ENTRY(vector_swi) /* Legacy ABI only, possibly thumb mode. */ tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in - ldreq scno, [lr, #-4] + USER( ldreq scno, [lr, #-4] ) #else /* Legacy ABI only. */ - ldr scno, [lr, #-4] @ get SWI instruction -#endif - -#ifdef CONFIG_ALIGNMENT_TRAP - ldr ip, __cr_alignment - ldr ip, [ip] - mcr p15, 0, ip, c1, c0 @ update control register + USER( ldr scno, [lr, #-4] ) @ get SWI instruction #endif - enable_irq - ct_user_exit - get_thread_info tsk adr tbl, sys_call_table @ load syscall table pointer #if defined(CONFIG_OABI_COMPAT) @@ -442,6 +442,18 @@ local_restart: eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back bcs arm_syscall b sys_ni_syscall @ not private func + +#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) + /* + * We may have faulted trying to load the SWI instruction due to + * concurrent page aging on another CPU. In this case, return + * back to the swi instruction and fault the page back. + */ +9001: + sub lr, lr, #4 + str lr, [sp, #S_PC] + b ret_fast_syscall +#endif ENDPROC(vector_swi) /* ^ permalink raw reply related [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-30 11:41 ` Will Deacon @ 2013-05-30 11:41 ` Will Deacon 2013-05-31 2:56 ` Wang, Yalin ` (2 subsequent siblings) 3 siblings, 0 replies; 36+ messages in thread From: Will Deacon @ 2013-05-30 11:41 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Thu, May 30, 2013 at 10:09:49AM +0100, Will Deacon wrote: > On Thu, May 30, 2013 at 02:41:42AM +0100, Wang, Yalin wrote: > > If you have some patch for this issue, > > I can do the test for it . > > I'll have a look at cooking something which uses an exception table entry > to rewind the PC and retry the system call. That's simpler than directly > injecting a user page fault from the system call path. Ok, please can you try the following? Will --->8 diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index bc5bc0a..855926e 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S @@ -361,6 +361,15 @@ ENTRY(vector_swi) str r8, [sp, #S_PSR] @ Save CPSR str r0, [sp, #S_OLD_R0] @ Save OLD_R0 zero_fp + enable_irq + ct_user_exit + +#ifdef CONFIG_ALIGNMENT_TRAP + ldr ip, __cr_alignment + ldr ip, [ip] + mcr p15, 0, ip, c1, c0 @ update control register +#endif + get_thread_info tsk /* * Get the system call number. @@ -375,9 +384,9 @@ ENTRY(vector_swi) #ifdef CONFIG_ARM_THUMB tst r8, #PSR_T_BIT movne r10, #0 @ no thumb OABI emulation - ldreq r10, [lr, #-4] @ get SWI instruction + USER( ldreq r10, [lr, #-4] ) @ get SWI instruction #else - ldr r10, [lr, #-4] @ get SWI instruction + USER( ldr r10, [lr, #-4] ) @ get SWI instruction #endif #ifdef CONFIG_CPU_ENDIAN_BE8 rev r10, r10 @ little endian instruction @@ -392,22 +401,13 @@ ENTRY(vector_swi) /* Legacy ABI only, possibly thumb mode. */ tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in - ldreq scno, [lr, #-4] + USER( ldreq scno, [lr, #-4] ) #else /* Legacy ABI only. */ - ldr scno, [lr, #-4] @ get SWI instruction -#endif - -#ifdef CONFIG_ALIGNMENT_TRAP - ldr ip, __cr_alignment - ldr ip, [ip] - mcr p15, 0, ip, c1, c0 @ update control register + USER( ldr scno, [lr, #-4] ) @ get SWI instruction #endif - enable_irq - ct_user_exit - get_thread_info tsk adr tbl, sys_call_table @ load syscall table pointer #if defined(CONFIG_OABI_COMPAT) @@ -442,6 +442,18 @@ local_restart: eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back bcs arm_syscall b sys_ni_syscall @ not private func + +#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) + /* + * We may have faulted trying to load the SWI instruction due to + * concurrent page aging on another CPU. In this case, return + * back to the swi instruction and fault the page back. + */ +9001: + sub lr, lr, #4 + str lr, [sp, #S_PC] + b ret_fast_syscall +#endif ENDPROC(vector_swi) /* ^ permalink raw reply related [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-30 11:41 ` Will Deacon 2013-05-30 11:41 ` Will Deacon @ 2013-05-31 2:56 ` Wang, Yalin 2013-05-31 8:46 ` Will Deacon 2013-05-31 3:54 ` Nicolas Pitre 2013-06-03 10:18 ` Russell King - ARM Linux 3 siblings, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-05-31 2:56 UTC (permalink / raw) To: 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' [-- Attachment #1: Type: text/plain, Size: 3249 bytes --] Hi Will, Thanks for your patch , But I found I don't have ct_user_exit macro In my arch/arm/kernel/entry-common.S My kernel version is 3.4.0 I have add the file as attachment, Could you make a patch for this file ? Thank you ! -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Thursday, May 30, 2013 7:41 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Thu, May 30, 2013 at 10:09:49AM +0100, Will Deacon wrote: > On Thu, May 30, 2013 at 02:41:42AM +0100, Wang, Yalin wrote: > > If you have some patch for this issue, I can do the test for it . > > I'll have a look at cooking something which uses an exception table > entry to rewind the PC and retry the system call. That's simpler than > directly injecting a user page fault from the system call path. Ok, please can you try the following? Will --->8 diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index bc5bc0a..855926e 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S @@ -361,6 +361,15 @@ ENTRY(vector_swi) str r8, [sp, #S_PSR] @ Save CPSR str r0, [sp, #S_OLD_R0] @ Save OLD_R0 zero_fp + enable_irq + ct_user_exit + +#ifdef CONFIG_ALIGNMENT_TRAP + ldr ip, __cr_alignment + ldr ip, [ip] + mcr p15, 0, ip, c1, c0 @ update control register +#endif + get_thread_info tsk /* * Get the system call number. @@ -375,9 +384,9 @@ ENTRY(vector_swi) #ifdef CONFIG_ARM_THUMB tst r8, #PSR_T_BIT movne r10, #0 @ no thumb OABI emulation - ldreq r10, [lr, #-4] @ get SWI instruction + USER( ldreq r10, [lr, #-4] ) @ get SWI instruction #else - ldr r10, [lr, #-4] @ get SWI instruction + USER( ldr r10, [lr, #-4] ) @ get SWI instruction #endif #ifdef CONFIG_CPU_ENDIAN_BE8 rev r10, r10 @ little endian instruction @@ -392,22 +401,13 @@ ENTRY(vector_swi) /* Legacy ABI only, possibly thumb mode. */ tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in - ldreq scno, [lr, #-4] + USER( ldreq scno, [lr, #-4] ) #else /* Legacy ABI only. */ - ldr scno, [lr, #-4] @ get SWI instruction -#endif - -#ifdef CONFIG_ALIGNMENT_TRAP - ldr ip, __cr_alignment - ldr ip, [ip] - mcr p15, 0, ip, c1, c0 @ update control register + USER( ldr scno, [lr, #-4] ) @ get SWI instruction #endif - enable_irq - ct_user_exit - get_thread_info tsk adr tbl, sys_call_table @ load syscall table pointer #if defined(CONFIG_OABI_COMPAT) @@ -442,6 +442,18 @@ local_restart: eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back bcs arm_syscall b sys_ni_syscall @ not private func + +#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) + /* + * We may have faulted trying to load the SWI instruction due to + * concurrent page aging on another CPU. In this case, return + * back to the swi instruction and fault the page back. + */ +9001: + sub lr, lr, #4 + str lr, [sp, #S_PC] + b ret_fast_syscall +#endif ENDPROC(vector_swi) /* [-- Attachment #2: entry-common.S --] [-- Type: application/octet-stream, Size: 15071 bytes --] /* * linux/arch/arm/kernel/entry-common.S * * Copyright (C) 2000 Russell King * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <asm/unistd.h> #include <asm/ftrace.h> #include <asm/unwind.h> #ifdef CONFIG_NEED_RET_TO_USER #include <mach/entry-macro.S> #else .macro arch_ret_to_user, tmp1, tmp2 .endm #endif #include "entry-header.S" .align 5 /* * This is the fast syscall return path. We do as little as * possible here, and this includes saving r0 back into the SVC * stack. */ ret_fast_syscall: UNWIND(.fnstart ) UNWIND(.cantunwind ) disable_irq @ disable interrupts ldr r1, [tsk, #TI_FLAGS] tst r1, #_TIF_WORK_MASK bne fast_work_pending #if defined(CONFIG_IRQSOFF_TRACER) asm_trace_hardirqs_on #endif /* perform architecture specific actions before user return */ arch_ret_to_user r1, lr restore_user_regs fast = 1, offset = S_OFF UNWIND(.fnend ) /* * Ok, we need to do extra processing, enter the slow path. */ fast_work_pending: str r0, [sp, #S_R0+S_OFF]! @ returned r0 work_pending: tst r1, #_TIF_NEED_RESCHED bne work_resched tst r1, #_TIF_SIGPENDING|_TIF_NOTIFY_RESUME beq no_work_pending mov r0, sp @ 'regs' mov r2, why @ 'syscall' tst r1, #_TIF_SIGPENDING @ delivering a signal? movne why, #0 @ prevent further restarts bl do_notify_resume b ret_slow_syscall @ Check work again work_resched: bl schedule /* * "slow" syscall return path. "why" tells us if this was a real syscall. */ ENTRY(ret_to_user) ret_slow_syscall: disable_irq @ disable interrupts ENTRY(ret_to_user_from_irq) ldr r1, [tsk, #TI_FLAGS] tst r1, #_TIF_WORK_MASK bne work_pending no_work_pending: #if defined(CONFIG_IRQSOFF_TRACER) asm_trace_hardirqs_on #endif /* perform architecture specific actions before user return */ arch_ret_to_user r1, lr restore_user_regs fast = 0, offset = 0 ENDPROC(ret_to_user_from_irq) ENDPROC(ret_to_user) /* * This is how we return from a fork. */ ENTRY(ret_from_fork) bl schedule_tail get_thread_info tsk ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing mov why, #1 tst r1, #_TIF_SYSCALL_WORK @ are we tracing syscalls? beq ret_slow_syscall mov r1, sp mov r0, #1 @ trace exit [IP = 1] bl syscall_trace b ret_slow_syscall ENDPROC(ret_from_fork) .equ NR_syscalls,0 #define CALL(x) .equ NR_syscalls,NR_syscalls+1 #include "calls.S" #undef CALL #define CALL(x) .long x #ifdef CONFIG_FUNCTION_TRACER /* * When compiling with -pg, gcc inserts a call to the mcount routine at the * start of every function. In mcount, apart from the function's address (in * lr), we need to get hold of the function's caller's address. * * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this: * * bl mcount * * These versions have the limitation that in order for the mcount routine to * be able to determine the function's caller's address, an APCS-style frame * pointer (which is set up with something like the code below) is required. * * mov ip, sp * push {fp, ip, lr, pc} * sub fp, ip, #4 * * With EABI, these frame pointers are not available unless -mapcs-frame is * specified, and if building as Thumb-2, not even then. * * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount, * with call sites like: * * push {lr} * bl __gnu_mcount_nc * * With these compilers, frame pointers are not necessary. * * mcount can be thought of as a function called in the middle of a subroutine * call. As such, it needs to be transparent for both the caller and the * callee: the original lr needs to be restored when leaving mcount, and no * registers should be clobbered. (In the __gnu_mcount_nc implementation, we * clobber the ip register. This is OK because the ARM calling convention * allows it to be clobbered in subroutines and doesn't use it to hold * parameters.) * * When using dynamic ftrace, we patch out the mcount call by a "mov r0, r0" * for the mcount case, and a "pop {lr}" for the __gnu_mcount_nc case (see * arch/arm/kernel/ftrace.c). */ #ifndef CONFIG_OLD_MCOUNT #if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4)) #error Ftrace requires CONFIG_FRAME_POINTER=y with GCC older than 4.4.0. #endif #endif .macro mcount_adjust_addr rd, rn bic \rd, \rn, #1 @ clear the Thumb bit if present sub \rd, \rd, #MCOUNT_INSN_SIZE .endm .macro __mcount suffix mcount_enter ldr r0, =ftrace_trace_function ldr r2, [r0] adr r0, .Lftrace_stub cmp r0, r2 bne 1f #ifdef CONFIG_FUNCTION_GRAPH_TRACER ldr r1, =ftrace_graph_return ldr r2, [r1] cmp r0, r2 bne ftrace_graph_caller\suffix ldr r1, =ftrace_graph_entry ldr r2, [r1] ldr r0, =ftrace_graph_entry_stub cmp r0, r2 bne ftrace_graph_caller\suffix #endif mcount_exit 1: mcount_get_lr r1 @ lr of instrumented func mcount_adjust_addr r0, lr @ instrumented function adr lr, BSYM(2f) mov pc, r2 2: mcount_exit .endm .macro __ftrace_caller suffix mcount_enter mcount_get_lr r1 @ lr of instrumented func mcount_adjust_addr r0, lr @ instrumented function .globl ftrace_call\suffix ftrace_call\suffix: bl ftrace_stub #ifdef CONFIG_FUNCTION_GRAPH_TRACER .globl ftrace_graph_call\suffix ftrace_graph_call\suffix: mov r0, r0 #endif mcount_exit .endm .macro __ftrace_graph_caller sub r0, fp, #4 @ &lr of instrumented routine (&parent) #ifdef CONFIG_DYNAMIC_FTRACE @ called from __ftrace_caller, saved in mcount_enter ldr r1, [sp, #16] @ instrumented routine (func) mcount_adjust_addr r1, r1 #else @ called from __mcount, untouched in lr mcount_adjust_addr r1, lr @ instrumented routine (func) #endif mov r2, fp @ frame pointer bl prepare_ftrace_return mcount_exit .endm #ifdef CONFIG_OLD_MCOUNT /* * mcount */ .macro mcount_enter stmdb sp!, {r0-r3, lr} .endm .macro mcount_get_lr reg ldr \reg, [fp, #-4] .endm .macro mcount_exit ldr lr, [fp, #-4] ldmia sp!, {r0-r3, pc} .endm ENTRY(mcount) #ifdef CONFIG_DYNAMIC_FTRACE stmdb sp!, {lr} ldr lr, [fp, #-4] ldmia sp!, {pc} #else __mcount _old #endif ENDPROC(mcount) #ifdef CONFIG_DYNAMIC_FTRACE ENTRY(ftrace_caller_old) __ftrace_caller _old ENDPROC(ftrace_caller_old) #endif #ifdef CONFIG_FUNCTION_GRAPH_TRACER ENTRY(ftrace_graph_caller_old) __ftrace_graph_caller ENDPROC(ftrace_graph_caller_old) #endif .purgem mcount_enter .purgem mcount_get_lr .purgem mcount_exit #endif /* * __gnu_mcount_nc */ .macro mcount_enter stmdb sp!, {r0-r3, lr} .endm .macro mcount_get_lr reg ldr \reg, [sp, #20] .endm .macro mcount_exit ldmia sp!, {r0-r3, ip, lr} mov pc, ip .endm ENTRY(__gnu_mcount_nc) #ifdef CONFIG_DYNAMIC_FTRACE mov ip, lr ldmia sp!, {lr} mov pc, ip #else __mcount #endif ENDPROC(__gnu_mcount_nc) #ifdef CONFIG_DYNAMIC_FTRACE ENTRY(ftrace_caller) __ftrace_caller ENDPROC(ftrace_caller) #endif #ifdef CONFIG_FUNCTION_GRAPH_TRACER ENTRY(ftrace_graph_caller) __ftrace_graph_caller ENDPROC(ftrace_graph_caller) #endif .purgem mcount_enter .purgem mcount_get_lr .purgem mcount_exit #ifdef CONFIG_FUNCTION_GRAPH_TRACER .globl return_to_handler return_to_handler: stmdb sp!, {r0-r3} mov r0, fp @ frame pointer bl ftrace_return_to_handler mov lr, r0 @ r0 has real ret addr ldmia sp!, {r0-r3} mov pc, lr #endif ENTRY(ftrace_stub) .Lftrace_stub: mov pc, lr ENDPROC(ftrace_stub) #endif /* CONFIG_FUNCTION_TRACER */ /*============================================================================= * SWI handler *----------------------------------------------------------------------------- */ /* If we're optimising for StrongARM the resulting code won't run on an ARM7 and we can save a couple of instructions. --pb */ #ifdef CONFIG_CPU_ARM710 #define A710(code...) code .Larm710bug: ldmia sp, {r0 - lr}^ @ Get calling r0 - lr mov r0, r0 add sp, sp, #S_FRAME_SIZE subs pc, lr, #4 #else #define A710(code...) #endif .align 5 ENTRY(vector_swi) sub sp, sp, #S_FRAME_SIZE stmia sp, {r0 - r12} @ Calling r0 - r12 ARM( add r8, sp, #S_PC ) ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr THUMB( mov r8, sp ) THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr mrs r8, spsr @ called from non-FIQ mode, so ok. str lr, [sp, #S_PC] @ Save calling PC str r8, [sp, #S_PSR] @ Save CPSR str r0, [sp, #S_OLD_R0] @ Save OLD_R0 zero_fp /* * Get the system call number. */ #if defined(CONFIG_OABI_COMPAT) /* * If we have CONFIG_OABI_COMPAT then we need to look at the swi * value to determine if it is an EABI or an old ABI call. */ #ifdef CONFIG_ARM_THUMB tst r8, #PSR_T_BIT movne r10, #0 @ no thumb OABI emulation ldreq r10, [lr, #-4] @ get SWI instruction #else ldr r10, [lr, #-4] @ get SWI instruction A710( and ip, r10, #0x0f000000 @ check for SWI ) A710( teq ip, #0x0f000000 ) A710( bne .Larm710bug ) #endif #ifdef CONFIG_CPU_ENDIAN_BE8 rev r10, r10 @ little endian instruction #endif #elif defined(CONFIG_AEABI) /* * Pure EABI user space always put syscall number into scno (r7). */ A710( ldr ip, [lr, #-4] @ get SWI instruction ) A710( and ip, ip, #0x0f000000 @ check for SWI ) A710( teq ip, #0x0f000000 ) A710( bne .Larm710bug ) #elif defined(CONFIG_ARM_THUMB) /* Legacy ABI only, possibly thumb mode. */ tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in ldreq scno, [lr, #-4] #else /* Legacy ABI only. */ ldr scno, [lr, #-4] @ get SWI instruction A710( and ip, scno, #0x0f000000 @ check for SWI ) A710( teq ip, #0x0f000000 ) A710( bne .Larm710bug ) #endif #ifdef CONFIG_ALIGNMENT_TRAP ldr ip, __cr_alignment ldr ip, [ip] mcr p15, 0, ip, c1, c0 @ update control register #endif enable_irq get_thread_info tsk adr tbl, sys_call_table @ load syscall table pointer #if defined(CONFIG_OABI_COMPAT) /* * If the swi argument is zero, this is an EABI call and we do nothing. * * If this is an old ABI call, get the syscall number into scno and * get the old ABI syscall table address. */ bics r10, r10, #0xff000000 eorne scno, r10, #__NR_OABI_SYSCALL_BASE ldrne tbl, =sys_oabi_call_table #elif !defined(CONFIG_AEABI) bic scno, scno, #0xff000000 @ mask off SWI op-code eor scno, scno, #__NR_SYSCALL_BASE @ check OS number #endif ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing stmdb sp!, {r4, r5} @ push fifth and sixth args #ifdef CONFIG_SECCOMP tst r10, #_TIF_SECCOMP beq 1f mov r0, scno bl __secure_computing add r0, sp, #S_R0 + S_OFF @ pointer to regs ldmia r0, {r0 - r3} @ have to reload r0 - r3 1: #endif tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls? bne __sys_trace cmp scno, #NR_syscalls @ check upper syscall limit adr lr, BSYM(ret_fast_syscall) @ return address ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine add r1, sp, #S_OFF 2: mov why, #0 @ no longer a real syscall cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE) eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back bcs arm_syscall b sys_ni_syscall @ not private func ENDPROC(vector_swi) /* * This is the really slow path. We're going to be doing * context switches, and waiting for our parent to respond. */ __sys_trace: mov r2, scno add r1, sp, #S_OFF mov r0, #0 @ trace entry [IP = 0] bl syscall_trace adr lr, BSYM(__sys_trace_return) @ return address mov scno, r0 @ syscall number (possibly new) add r1, sp, #S_R0 + S_OFF @ pointer to regs cmp scno, #NR_syscalls @ check upper syscall limit ldmccia r1, {r0 - r3} @ have to reload r0 - r3 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine b 2b __sys_trace_return: str r0, [sp, #S_R0 + S_OFF]! @ save returned r0 mov r2, scno mov r1, sp mov r0, #1 @ trace exit [IP = 1] bl syscall_trace b ret_slow_syscall .align 5 #ifdef CONFIG_ALIGNMENT_TRAP .type __cr_alignment, #object __cr_alignment: .word cr_alignment #endif .ltorg /* * This is the syscall table declaration for native ABI syscalls. * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall. */ #define ABI(native, compat) native #ifdef CONFIG_AEABI #define OBSOLETE(syscall) sys_ni_syscall #else #define OBSOLETE(syscall) syscall #endif .type sys_call_table, #object ENTRY(sys_call_table) #include "calls.S" #undef ABI #undef OBSOLETE /*============================================================================ * Special system call wrappers */ @ r0 = syscall number @ r8 = syscall table sys_syscall: bic scno, r0, #__NR_OABI_SYSCALL_BASE cmp scno, #__NR_syscall - __NR_SYSCALL_BASE cmpne scno, #NR_syscalls @ check range stmloia sp, {r5, r6} @ shuffle args movlo r0, r1 movlo r1, r2 movlo r2, r3 movlo r3, r4 ldrlo pc, [tbl, scno, lsl #2] b sys_ni_syscall ENDPROC(sys_syscall) sys_fork_wrapper: add r0, sp, #S_OFF b sys_fork ENDPROC(sys_fork_wrapper) sys_vfork_wrapper: add r0, sp, #S_OFF b sys_vfork ENDPROC(sys_vfork_wrapper) sys_execve_wrapper: add r3, sp, #S_OFF b sys_execve ENDPROC(sys_execve_wrapper) sys_clone_wrapper: add ip, sp, #S_OFF str ip, [sp, #4] b sys_clone ENDPROC(sys_clone_wrapper) sys_sigreturn_wrapper: add r0, sp, #S_OFF mov why, #0 @ prevent syscall restart handling b sys_sigreturn ENDPROC(sys_sigreturn_wrapper) sys_rt_sigreturn_wrapper: add r0, sp, #S_OFF mov why, #0 @ prevent syscall restart handling b sys_rt_sigreturn ENDPROC(sys_rt_sigreturn_wrapper) sys_sigaltstack_wrapper: ldr r2, [sp, #S_OFF + S_SP] b do_sigaltstack ENDPROC(sys_sigaltstack_wrapper) sys_statfs64_wrapper: teq r1, #88 moveq r1, #84 b sys_statfs64 ENDPROC(sys_statfs64_wrapper) sys_fstatfs64_wrapper: teq r1, #88 moveq r1, #84 b sys_fstatfs64 ENDPROC(sys_fstatfs64_wrapper) /* * Note: off_4k (r5) is always units of 4K. If we can't do the requested * offset, we return EINVAL. */ sys_mmap2: #if PAGE_SHIFT > 12 tst r5, #PGOFF_MASK moveq r5, r5, lsr #PAGE_SHIFT - 12 streq r5, [sp, #4] beq sys_mmap_pgoff mov r0, #-EINVAL mov pc, lr #else str r5, [sp, #4] b sys_mmap_pgoff #endif ENDPROC(sys_mmap2) #ifdef CONFIG_OABI_COMPAT /* * These are syscalls with argument register differences */ sys_oabi_pread64: stmia sp, {r3, r4} b sys_pread64 ENDPROC(sys_oabi_pread64) sys_oabi_pwrite64: stmia sp, {r3, r4} b sys_pwrite64 ENDPROC(sys_oabi_pwrite64) sys_oabi_truncate64: mov r3, r2 mov r2, r1 b sys_truncate64 ENDPROC(sys_oabi_truncate64) sys_oabi_ftruncate64: mov r3, r2 mov r2, r1 b sys_ftruncate64 ENDPROC(sys_oabi_ftruncate64) sys_oabi_readahead: str r3, [sp] mov r3, r2 mov r2, r1 b sys_readahead ENDPROC(sys_oabi_readahead) /* * Let's declare a second syscall table for old ABI binaries * using the compatibility syscall entries. */ #define ABI(native, compat) compat #define OBSOLETE(syscall) syscall .type sys_oabi_call_table, #object ENTRY(sys_oabi_call_table) #include "calls.S" #undef ABI #undef OBSOLETE #endif ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-31 2:56 ` Wang, Yalin @ 2013-05-31 8:46 ` Will Deacon 2013-05-31 11:02 ` Wang, Yalin 0 siblings, 1 reply; 36+ messages in thread From: Will Deacon @ 2013-05-31 8:46 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Fri, May 31, 2013 at 03:56:31AM +0100, Wang, Yalin wrote: > Hi Will, > > Thanks for your patch , > > But I found I don't have ct_user_exit macro > In my arch/arm/kernel/entry-common.S > > My kernel version is 3.4.0 Well things have moved on this since then (we're approaching 3.10, so you might consider an upgrade!). For the purposes of this patch, you can just delete the ct_user_exit line. Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-31 8:46 ` Will Deacon @ 2013-05-31 11:02 ` Wang, Yalin 2013-05-31 11:13 ` Will Deacon 0 siblings, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-05-31 11:02 UTC (permalink / raw) To: 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will, I have merge your code , But there is a different , + + ct_user_exit + +#ifdef CONFIG_ALIGNMENT_TRAP + ldr ip, __cr_alignment + ldr ip, [ip] + mcr p15, 0, ip, c1, c0 @ update control register +#endif + enable_irq + get_thread_info tsk Is this change ok ? Thanks -----Original Message----- From: linux-arch-owner@vger.kernel.org [mailto:linux-arch-owner@vger.kernel.org] On Behalf Of Will Deacon Sent: Friday, May 31, 2013 4:47 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Fri, May 31, 2013 at 03:56:31AM +0100, Wang, Yalin wrote: > Hi Will, > > Thanks for your patch , > > But I found I don't have ct_user_exit macro In my > arch/arm/kernel/entry-common.S > > My kernel version is 3.4.0 Well things have moved on this since then (we're approaching 3.10, so you might consider an upgrade!). For the purposes of this patch, you can just delete the ct_user_exit line. Will -- To unsubscribe from this list: send the line "unsubscribe linux-arch" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-31 11:02 ` Wang, Yalin @ 2013-05-31 11:13 ` Will Deacon 2013-05-31 11:30 ` Wang, Yalin 2013-05-31 16:48 ` Nicolas Pitre 0 siblings, 2 replies; 36+ messages in thread From: Will Deacon @ 2013-05-31 11:13 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Fri, May 31, 2013 at 12:02:49PM +0100, Wang, Yalin wrote: > Hi Will, > > I have merge your code , > But there is a different , > > + > + ct_user_exit I thought you didn't have ct_user_exit? In which case, just delete this line. > +#ifdef CONFIG_ALIGNMENT_TRAP > + ldr ip, __cr_alignment > + ldr ip, [ip] > + mcr p15, 0, ip, c1, c0 @ update control register > +#endif > > + enable_irq > + get_thread_info tsk Hard to tell without context. You can take a look at my git tree if you like (I fixed it up based on Nico's comment): https://git.kernel.org/cgit/linux/kernel/git/will/linux.git/commit/?h=misc-patches Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-31 11:13 ` Will Deacon @ 2013-05-31 11:30 ` Wang, Yalin 2013-06-03 5:25 ` Wang, Yalin 2013-05-31 16:48 ` Nicolas Pitre 1 sibling, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-05-31 11:30 UTC (permalink / raw) To: 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will, I see, I will make one more test . Thanks for your clarification . -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Friday, May 31, 2013 7:13 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Fri, May 31, 2013 at 12:02:49PM +0100, Wang, Yalin wrote: > Hi Will, > > I have merge your code , > But there is a different , > > + > + ct_user_exit I thought you didn't have ct_user_exit? In which case, just delete this line. > +#ifdef CONFIG_ALIGNMENT_TRAP > + ldr ip, __cr_alignment > + ldr ip, [ip] > + mcr p15, 0, ip, c1, c0 @ update control register > +#endif > > + enable_irq > + get_thread_info tsk Hard to tell without context. You can take a look at my git tree if you like (I fixed it up based on Nico's comment): https://git.kernel.org/cgit/linux/kernel/git/will/linux.git/commit/?h=misc-patches Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-31 11:30 ` Wang, Yalin @ 2013-06-03 5:25 ` Wang, Yalin 2013-06-03 9:54 ` Will Deacon 0 siblings, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-06-03 5:25 UTC (permalink / raw) To: Wang, Yalin, 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will, I have a question about this patch . If the user space is thumb mode, The PC should be rewind by 2 bytes, So the fix_up code should be Sub lr, lr, #2 . Am I right ? Thanks for your help . -----Original Message----- From: Wang, Yalin Sent: Friday, May 31, 2013 7:31 PM To: 'Will Deacon' Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: RE: A bug about system call on ARM Hi Will, I see, I will make one more test . Thanks for your clarification . -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Friday, May 31, 2013 7:13 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Fri, May 31, 2013 at 12:02:49PM +0100, Wang, Yalin wrote: > Hi Will, > > I have merge your code , > But there is a different , > > + > + ct_user_exit I thought you didn't have ct_user_exit? In which case, just delete this line. > +#ifdef CONFIG_ALIGNMENT_TRAP > + ldr ip, __cr_alignment > + ldr ip, [ip] > + mcr p15, 0, ip, c1, c0 @ update control register > +#endif > > + enable_irq > + get_thread_info tsk Hard to tell without context. You can take a look at my git tree if you like (I fixed it up based on Nico's comment): https://git.kernel.org/cgit/linux/kernel/git/will/linux.git/commit/?h=misc-patches Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-06-03 5:25 ` Wang, Yalin @ 2013-06-03 9:54 ` Will Deacon 2013-06-03 9:58 ` Wang, Yalin 2013-06-14 6:53 ` Wang, Yalin 0 siblings, 2 replies; 36+ messages in thread From: Will Deacon @ 2013-06-03 9:54 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Mon, Jun 03, 2013 at 06:25:26AM +0100, Wang, Yalin wrote: > Hi Will, > > I have a question about this patch . > > If the user space is thumb mode, > The PC should be rewind by 2 bytes, > So the fix_up code should be > > Sub lr, lr, #2 . > > > Am I right ? No, because we don't have OABI-compat support for Thumb applications and force everything down the EABI path instead. Did you manage to test the patch? Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-06-03 9:54 ` Will Deacon @ 2013-06-03 9:58 ` Wang, Yalin 2013-06-04 5:33 ` Wang, Yalin 2013-06-14 6:53 ` Wang, Yalin 1 sibling, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-06-03 9:58 UTC (permalink / raw) To: 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will Oh I see, Thanks for your reply Yes , we are testing for it , But need some time to wait for the result , Because The stability test need some time to reproduce this issue , And this issue doesn't reproduce 100% . -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Monday, June 03, 2013 5:54 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Mon, Jun 03, 2013 at 06:25:26AM +0100, Wang, Yalin wrote: > Hi Will, > > I have a question about this patch . > > If the user space is thumb mode, > The PC should be rewind by 2 bytes, > So the fix_up code should be > > Sub lr, lr, #2 . > > > Am I right ? No, because we don't have OABI-compat support for Thumb applications and force everything down the EABI path instead. Did you manage to test the patch? Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-06-03 9:58 ` Wang, Yalin @ 2013-06-04 5:33 ` Wang, Yalin 2013-06-04 8:48 ` Will Deacon 0 siblings, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-06-04 5:33 UTC (permalink / raw) To: 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will, Could I know what's your git branch is mainly used for ? https://git.kernel.org/cgit/linux/kernel/git/will/linux.git I mean if the branch is used for ARM arch maintenance ? If yes, I think I can send future bugs about ARM to you directly, And do not need ping-pang in the mail list . Thanks for your help . -----Original Message----- From: Wang, Yalin Sent: Monday, June 03, 2013 5:58 PM To: 'Will Deacon' Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: RE: A bug about system call on ARM Hi Will Oh I see, Thanks for your reply Yes , we are testing for it , But need some time to wait for the result , Because The stability test need some time to reproduce this issue , And this issue doesn't reproduce 100% . -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Monday, June 03, 2013 5:54 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Mon, Jun 03, 2013 at 06:25:26AM +0100, Wang, Yalin wrote: > Hi Will, > > I have a question about this patch . > > If the user space is thumb mode, > The PC should be rewind by 2 bytes, > So the fix_up code should be > > Sub lr, lr, #2 . > > > Am I right ? No, because we don't have OABI-compat support for Thumb applications and force everything down the EABI path instead. Did you manage to test the patch? Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-06-04 5:33 ` Wang, Yalin @ 2013-06-04 8:48 ` Will Deacon 2013-06-04 8:48 ` Will Deacon 2013-06-04 9:30 ` Wang, Yalin 0 siblings, 2 replies; 36+ messages in thread From: Will Deacon @ 2013-06-04 8:48 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Tue, Jun 04, 2013 at 06:33:20AM +0100, Wang, Yalin wrote: > Hi Will, Hello, > Could I know what's your git branch is mainly used for ? > > https://git.kernel.org/cgit/linux/kernel/git/will/linux.git > > > I mean if the branch is used for ARM arch maintenance ? I send most of my patches via Russell, and the tree above is where I keep my patches whilst they're not yet in mainline. > If yes, I think I can send future bugs about ARM to you directly, > And do not need ping-pang in the mail list . Quite the opposite! Having discussions on the mailing list is key to how the kernel is developed, so please continue to send questions, bug reports and patches there. As has been pointed out previously in this thread, you need to choose the right list in the first place, rather than just sending to LKML. Of course, you can always CC me on arm/arm64 patches if you like. Cheers, Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-06-04 8:48 ` Will Deacon @ 2013-06-04 8:48 ` Will Deacon 2013-06-04 9:30 ` Wang, Yalin 1 sibling, 0 replies; 36+ messages in thread From: Will Deacon @ 2013-06-04 8:48 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Tue, Jun 04, 2013 at 06:33:20AM +0100, Wang, Yalin wrote: > Hi Will, Hello, > Could I know what's your git branch is mainly used for ? > > https://git.kernel.org/cgit/linux/kernel/git/will/linux.git > > > I mean if the branch is used for ARM arch maintenance ? I send most of my patches via Russell, and the tree above is where I keep my patches whilst they're not yet in mainline. > If yes, I think I can send future bugs about ARM to you directly, > And do not need ping-pang in the mail list . Quite the opposite! Having discussions on the mailing list is key to how the kernel is developed, so please continue to send questions, bug reports and patches there. As has been pointed out previously in this thread, you need to choose the right list in the first place, rather than just sending to LKML. Of course, you can always CC me on arm/arm64 patches if you like. Cheers, Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-06-04 8:48 ` Will Deacon 2013-06-04 8:48 ` Will Deacon @ 2013-06-04 9:30 ` Wang, Yalin 2013-06-04 11:27 ` Will Deacon 1 sibling, 1 reply; 36+ messages in thread From: Wang, Yalin @ 2013-06-04 9:30 UTC (permalink / raw) To: 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will, Thanks for your reply, I see your meaning , But it seems my apply for joining into 'linux-arm-kernel@lists.infradead.org' Is not approved , How to join in this mail-list ? Thanks for your help . -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Tuesday, June 04, 2013 4:49 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Tue, Jun 04, 2013 at 06:33:20AM +0100, Wang, Yalin wrote: > Hi Will, Hello, > Could I know what's your git branch is mainly used for ? > > https://git.kernel.org/cgit/linux/kernel/git/will/linux.git > > > I mean if the branch is used for ARM arch maintenance ? I send most of my patches via Russell, and the tree above is where I keep my patches whilst they're not yet in mainline. > If yes, I think I can send future bugs about ARM to you directly, And > do not need ping-pang in the mail list . Quite the opposite! Having discussions on the mailing list is key to how the kernel is developed, so please continue to send questions, bug reports and patches there. As has been pointed out previously in this thread, you need to choose the right list in the first place, rather than just sending to LKML. Of course, you can always CC me on arm/arm64 patches if you like. Cheers, Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-06-04 9:30 ` Wang, Yalin @ 2013-06-04 11:27 ` Will Deacon 0 siblings, 0 replies; 36+ messages in thread From: Will Deacon @ 2013-06-04 11:27 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Tue, Jun 04, 2013 at 10:30:04AM +0100, Wang, Yalin wrote: > Hi Will, > > Thanks for your reply, > I see your meaning , > But it seems my apply for joining into 'linux-arm-kernel@lists.infradead.org' > Is not approved , > How to join in this mail-list ? There's a mailman frontend here: http://lists.infradead.org/mailman/listinfo/linux-arm-kernel Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-06-03 9:54 ` Will Deacon 2013-06-03 9:58 ` Wang, Yalin @ 2013-06-14 6:53 ` Wang, Yalin 1 sibling, 0 replies; 36+ messages in thread From: Wang, Yalin @ 2013-06-14 6:53 UTC (permalink / raw) To: 'Will Deacon' Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Will, We have tested the patch, It seems ok in the stability test . We have merged it into our main branch . Thanks for your patch ! -----Original Message----- From: Will Deacon [mailto:will.deacon@arm.com] Sent: Monday, June 03, 2013 5:54 PM To: Wang, Yalin Cc: 'richard -rw- weinberger'; 'linux-arch@vger.kernel.org'; 'linux-kernel@vger.kernel.org'; 'linux-arm-kernel@lists.infradead.org' Subject: Re: A bug about system call on ARM On Mon, Jun 03, 2013 at 06:25:26AM +0100, Wang, Yalin wrote: > Hi Will, > > I have a question about this patch . > > If the user space is thumb mode, > The PC should be rewind by 2 bytes, > So the fix_up code should be > > Sub lr, lr, #2 . > > > Am I right ? No, because we don't have OABI-compat support for Thumb applications and force everything down the EABI path instead. Did you manage to test the patch? Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-31 11:13 ` Will Deacon 2013-05-31 11:30 ` Wang, Yalin @ 2013-05-31 16:48 ` Nicolas Pitre 2013-05-31 16:52 ` Will Deacon 1 sibling, 1 reply; 36+ messages in thread From: Nicolas Pitre @ 2013-05-31 16:48 UTC (permalink / raw) To: Will Deacon Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Fri, 31 May 2013, Will Deacon wrote: > Hard to tell without context. You can take a look at my git tree if you > like (I fixed it up based on Nico's comment): > > https://git.kernel.org/cgit/linux/kernel/git/will/linux.git/commit/?h=misc-patches If you like, you may add "Reviewed-by: Nicolas Pitre <nico@linaro.org>" to it. Nicolas ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-31 16:48 ` Nicolas Pitre @ 2013-05-31 16:52 ` Will Deacon 0 siblings, 0 replies; 36+ messages in thread From: Will Deacon @ 2013-05-31 16:52 UTC (permalink / raw) To: Nicolas Pitre Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Fri, May 31, 2013 at 05:48:56PM +0100, Nicolas Pitre wrote: > On Fri, 31 May 2013, Will Deacon wrote: > > > Hard to tell without context. You can take a look at my git tree if you > > like (I fixed it up based on Nico's comment): > > > > https://git.kernel.org/cgit/linux/kernel/git/will/linux.git/commit/?h=misc-patches > > If you like, you may add "Reviewed-by: Nicolas Pitre <nico@linaro.org>" > to it. Cheers Nicolas, will do. Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-30 11:41 ` Will Deacon 2013-05-30 11:41 ` Will Deacon 2013-05-31 2:56 ` Wang, Yalin @ 2013-05-31 3:54 ` Nicolas Pitre 2013-05-31 3:54 ` Nicolas Pitre 2013-05-31 8:45 ` Will Deacon 2013-06-03 10:18 ` Russell King - ARM Linux 3 siblings, 2 replies; 36+ messages in thread From: Nicolas Pitre @ 2013-05-31 3:54 UTC (permalink / raw) To: Will Deacon Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', Wang, Yalin, 'linux-arm-kernel@lists.infradead.org', 'linux-kernel@vger.kernel.org' On Thu, 30 May 2013, Will Deacon wrote: > On Thu, May 30, 2013 at 10:09:49AM +0100, Will Deacon wrote: > > On Thu, May 30, 2013 at 02:41:42AM +0100, Wang, Yalin wrote: > > > If you have some patch for this issue, > > > I can do the test for it . > > > > I'll have a look at cooking something which uses an exception table entry > > to rewind the PC and retry the system call. That's simpler than directly > > injecting a user page fault from the system call path. > > Ok, please can you try the following? > > Will > > --->8 > > diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S > index bc5bc0a..855926e 100644 > --- a/arch/arm/kernel/entry-common.S > +++ b/arch/arm/kernel/entry-common.S > @@ -361,6 +361,15 @@ ENTRY(vector_swi) > str r8, [sp, #S_PSR] @ Save CPSR > str r0, [sp, #S_OLD_R0] @ Save OLD_R0 > zero_fp > + enable_irq > + ct_user_exit > + > +#ifdef CONFIG_ALIGNMENT_TRAP > + ldr ip, __cr_alignment > + ldr ip, [ip] > + mcr p15, 0, ip, c1, c0 @ update control register > +#endif This is wrong. you must set up the align bit in the control register _before_ enabling IRQs or an IRQ handler might run without alignment fixup. Otherwise the patch looks good to me. Nicolas ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-31 3:54 ` Nicolas Pitre @ 2013-05-31 3:54 ` Nicolas Pitre 2013-05-31 8:45 ` Will Deacon 1 sibling, 0 replies; 36+ messages in thread From: Nicolas Pitre @ 2013-05-31 3:54 UTC (permalink / raw) To: Will Deacon Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Thu, 30 May 2013, Will Deacon wrote: > On Thu, May 30, 2013 at 10:09:49AM +0100, Will Deacon wrote: > > On Thu, May 30, 2013 at 02:41:42AM +0100, Wang, Yalin wrote: > > > If you have some patch for this issue, > > > I can do the test for it . > > > > I'll have a look at cooking something which uses an exception table entry > > to rewind the PC and retry the system call. That's simpler than directly > > injecting a user page fault from the system call path. > > Ok, please can you try the following? > > Will > > --->8 > > diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S > index bc5bc0a..855926e 100644 > --- a/arch/arm/kernel/entry-common.S > +++ b/arch/arm/kernel/entry-common.S > @@ -361,6 +361,15 @@ ENTRY(vector_swi) > str r8, [sp, #S_PSR] @ Save CPSR > str r0, [sp, #S_OLD_R0] @ Save OLD_R0 > zero_fp > + enable_irq > + ct_user_exit > + > +#ifdef CONFIG_ALIGNMENT_TRAP > + ldr ip, __cr_alignment > + ldr ip, [ip] > + mcr p15, 0, ip, c1, c0 @ update control register > +#endif This is wrong. you must set up the align bit in the control register _before_ enabling IRQs or an IRQ handler might run without alignment fixup. Otherwise the patch looks good to me. Nicolas ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-31 3:54 ` Nicolas Pitre 2013-05-31 3:54 ` Nicolas Pitre @ 2013-05-31 8:45 ` Will Deacon 1 sibling, 0 replies; 36+ messages in thread From: Will Deacon @ 2013-05-31 8:45 UTC (permalink / raw) To: Nicolas Pitre Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Fri, May 31, 2013 at 04:54:56AM +0100, Nicolas Pitre wrote: > On Thu, 30 May 2013, Will Deacon wrote: > > > On Thu, May 30, 2013 at 10:09:49AM +0100, Will Deacon wrote: > > > On Thu, May 30, 2013 at 02:41:42AM +0100, Wang, Yalin wrote: > > > > If you have some patch for this issue, > > > > I can do the test for it . > > > > > > I'll have a look at cooking something which uses an exception table entry > > > to rewind the PC and retry the system call. That's simpler than directly > > > injecting a user page fault from the system call path. > > > > Ok, please can you try the following? > > > > Will > > > > --->8 > > > > diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S > > index bc5bc0a..855926e 100644 > > --- a/arch/arm/kernel/entry-common.S > > +++ b/arch/arm/kernel/entry-common.S > > @@ -361,6 +361,15 @@ ENTRY(vector_swi) > > str r8, [sp, #S_PSR] @ Save CPSR > > str r0, [sp, #S_OLD_R0] @ Save OLD_R0 > > zero_fp > > + enable_irq > > + ct_user_exit > > + > > +#ifdef CONFIG_ALIGNMENT_TRAP > > + ldr ip, __cr_alignment > > + ldr ip, [ip] > > + mcr p15, 0, ip, c1, c0 @ update control register > > +#endif > > This is wrong. you must set up the align bit in the control register > _before_ enabling IRQs or an IRQ handler might run without alignment > fixup. Okey doke, I can fix that up. I thought it was only needed for the network layer, but I suppose they have interrupts over there too :) > Otherwise the patch looks good to me. Thanks Nicolas. Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-05-30 11:41 ` Will Deacon ` (2 preceding siblings ...) 2013-05-31 3:54 ` Nicolas Pitre @ 2013-06-03 10:18 ` Russell King - ARM Linux 2013-06-03 10:27 ` Will Deacon 3 siblings, 1 reply; 36+ messages in thread From: Russell King - ARM Linux @ 2013-06-03 10:18 UTC (permalink / raw) To: Will Deacon Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Thu, May 30, 2013 at 12:41:12PM +0100, Will Deacon wrote: > +#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) > + /* > + * We may have faulted trying to load the SWI instruction due to > + * concurrent page aging on another CPU. In this case, return > + * back to the swi instruction and fault the page back. > + */ > +9001: > + sub lr, lr, #4 > + str lr, [sp, #S_PC] > + b ret_fast_syscall > +#endif The comment is wrong. If we get here, it means that the fault from trying to loading the instruction can't be fixed up. Arguably, that should result in a SIGSEGV being sent immediately, but we'll get to that when we then try to re-load the instruction. What it means is that the page we were trying to execute has been unmapped beneath us. BTW, I notice that the kernel oops was never posted to the list, so it's impossible for other people following this thread to see what the real problem is... ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-06-03 10:18 ` Russell King - ARM Linux @ 2013-06-03 10:27 ` Will Deacon 2013-06-03 10:45 ` Russell King - ARM Linux 0 siblings, 1 reply; 36+ messages in thread From: Will Deacon @ 2013-06-03 10:27 UTC (permalink / raw) To: Russell King - ARM Linux Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' Hi Russell, On Mon, Jun 03, 2013 at 11:18:09AM +0100, Russell King - ARM Linux wrote: > On Thu, May 30, 2013 at 12:41:12PM +0100, Will Deacon wrote: > > +#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) > > + /* > > + * We may have faulted trying to load the SWI instruction due to > > + * concurrent page aging on another CPU. In this case, return > > + * back to the swi instruction and fault the page back. > > + */ > > +9001: > > + sub lr, lr, #4 > > + str lr, [sp, #S_PC] > > + b ret_fast_syscall > > +#endif > > The comment is wrong. If we get here, it means that the fault from > trying to loading the instruction can't be fixed up. Arguably, that > should result in a SIGSEGV being sent immediately, but we'll get to > that when we then try to re-load the instruction. Why would we kill the application in this case? The reported problem is where one CPU ages the page containing the swi instruction (mkold => clears L_PTE_YOUNG => write 0 to the pte) in between the other CPU executing the swi and the kernel trying to read the immediate. The VMA is fine. > What it means is that the page we were trying to execute has been > unmapped beneath us. Yes, as a result of the kernel aging it. > BTW, I notice that the kernel oops was never posted to the list, so it's > impossible for other people following this thread to see what the real > problem is... It was sent as an attachment I think, so I've pasted the log below (you can see CPU0 unmapping the page from which CPU1 is assumedly executing). Will --->8 <1>[44330.850628] Unable to handle kernel paging request at virtual address 4020841c <1>[44330.850750] pgd = c490c000 <1>[44330.850841] [4020841c] *pgd=84451831, *pte=bf05859d, *ppte=00000000 <0>[44330.851055] Internal error: Oops: 17 [#1] PREEMPT SMP ARM <4>[44330.851146] Modules linked in: hid_sony(O) <4>[44330.851330] CPU: 1 Tainted: G W O (3.4.0-perf-gf496dca-01162-gcbcc62b #1) <4>[44330.851421] PC is at vector_swi+0x28/0x88 <4>[44330.851482] LR is at 0x40208420 <4>[44330.851604] pc : [<c000dfe8>] lr : [<40208420>] psr: 60000093 <4>[44330.851604] sp : e0601fb0 ip : 40092f78 fp : befcd6fc <4>[44330.851757] r10: 4005a040 r9 : 4012fa70 r8 : 60000010 <4>[44330.851818] r7 : 00000107 r6 : 00000003 r5 : 4005a030 r4 : 5746d378 <4>[44330.851909] r3 : 5883fbf8 r2 : 00000000 r1 : befcd6d0 r0 : 00000001 <4>[44330.851971] Flags: nZCv IRQs off FIQs on Mode SVC_32 ISA ARM Segment user <4>[44330.852093] Control: 10c5787d Table: 84b0c06a DAC: 00000015 <4>[44330.852154] <4>[44330.852154] PC: 0xc000df68: <4>[44330.852306] df68 e31100ff 1afffff0 e59d1040 e5bde03c e16ff001 f57ff01f e95d7fff e1a00000 <4>[44330.852825] df88 e28dd00c e1b0f00e eb025aba e1a096ad e1a09689 e5991000 e3a08001 e3110c03 <4>[44330.853405] dfa8 0affffec e1a0100d e3a00001 eb000911 eaffffe8 e320f000 e24dd048 e88d1fff <4>[44330.853954] dfc8 e28d803c e9486000 e14f8000 e58de03c e58d8040 e58d0044 e3180020 13a0a000 <4>[44330.854534] dfe8 051ea004 e59fc0ac e59cc000 ee01cf10 f1080080 e1a096ad e1a09689 e28f809c <4>[44330.855053] e008 e3daa4ff 122a7609 159f808c e599a000 e92d0030 e31a0c03 1a000008 e3570f5f <4>[44330.855602] e028 e24fee13 3798f107 e28d1008 e3a08000 e357080f e2270000 2a000fac ea022fd4 <4>[44330.856152] e048 e1a02007 e28d1008 e3a00000 eb0008e9 e28fe014 e1a07000 e28d1008 e3570f5f <4>[44330.856732] <4>[44330.856732] SP: 0xe0601f30: <4>[44330.856823] 1f30 00000000 00000000 c0d44f98 00000001 e18fce48 00000002 e565fa80 00000000 <4>[44330.857373] 1f50 c000dfe8 60000093 ffffffff e0601f9c 60000010 c0731518 00000001 befcd6d0 <4>[44330.857891] 1f70 00000000 5883fbf8 5746d378 4005a030 00000003 00000107 60000010 4012fa70 <4>[44330.858471] 1f90 4005a040 befcd6fc 40092f78 e0601fb0 40208420 c000dfe8 60000093 ffffffff <4>[44330.859021] 1fb0 00000001 befcd6d0 00000000 5883fbf8 5746d378 4005a030 00000003 00000107 <4>[44330.859570] 1fd0 befcd6e8 4012fa70 4005a040 befcd6fc 40092f78 befcd6c8 4008aef9 40208420 <4>[44330.860089] 1ff0 60000010 00000001 ffe6e6e6 ffe6e6e6 00000000 00000000 00000000 00000000 <4>[44330.860669] 2010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 <0>[44330.861218] Process ndroid.settings (pid: 25518, stack limit = 0xe06002f0) <0>[44330.861279] Stack: (0xe0601fb0 to 0xe0602000) <0>[44330.861401] 1fa0: 00000001 befcd6d0 00000000 5883fbf8 <0>[44330.861462] 1fc0: 5746d378 4005a030 00000003 00000107 befcd6e8 4012fa70 4005a040 befcd6fc <0>[44330.861584] 1fe0: 40092f78 befcd6c8 4008aef9 40208420 60000010 00000001 ffe6e6e6 ffe6e6e6 <0>[44330.861707] Code: e58d8040 e58d0044 e3180020 13a0a000 (051ea004) <4>[44330.861890] ---[ end trace da227214a82491c0 ]--- <0>[44330.862012] Kernel panic - not syncing: Fatal exception <2>[44330.862073] CPU0: stopping <4>[44330.862195] [<c0014df8>] (unwind_backtrace+0x0/0x11c) from [<c001339c>] (handle_IPI+0x110/0x224) <4>[44330.862256] [<c001339c>] (handle_IPI+0x110/0x224) from [<c000868c>] (gic_handle_irq+0x104/0x110) <4>[44330.862378] [<c000868c>] (gic_handle_irq+0x104/0x110) from [<c0731580>] (__irq_svc+0x40/0x70) <4>[44330.862470] Exception stack(0xc7439b10 to 0xc7439b58) <4>[44330.862531] 9b00: 00000001 bf05f000 00000004 1a55b000 <4>[44330.862653] 9b20: bf05f59d d2b4ac08 000bf05f ca5ca03c 00000000 c7439c24 4020f000 00000001 <4>[44330.862744] 9b40: c0f2ab50 c7439b58 c0123038 c0123040 00000113 ffffffff <4>[44330.862836] [<c0731580>] (__irq_svc+0x40/0x70) from [<c0123040>] (memblock_is_memory+0x18/0x20) <4>[44330.862958] [<c0123040>] (memblock_is_memory+0x18/0x20) from [<c00198b4>] (__sync_icache_dcache+0x40/0x9c) <4>[44330.863049] [<c00198b4>] (__sync_icache_dcache+0x40/0x9c) from [<c0121a44>] (ptep_clear_flush_young+0x3c/0x60) <4>[44330.863171] [<c0121a44>] (ptep_clear_flush_young+0x3c/0x60) from [<c011d3b0>] (page_referenced_one+0x6c/0xfc) <4>[44330.863294] [<c011d3b0>] (page_referenced_one+0x6c/0xfc) from [<c011e9e4>] (page_referenced+0x1a8/0x200) <4>[44330.863416] [<c011e9e4>] (page_referenced+0x1a8/0x200) from [<c010522c>] (shrink_active_list.isra.49+0x1ec/0x2e8) <4>[44330.863477] [<c010522c>] (shrink_active_list.isra.49+0x1ec/0x2e8) from [<c0106554>] (shrink_mem_cgroup_zone+0x338/0x4c4) <4>[44330.863599] [<c0106554>] (shrink_mem_cgroup_zone+0x338/0x4c4) from [<c010740c>] (try_to_free_pages+0x2a0/0x570) <4>[44330.863690] [<c010740c>] (try_to_free_pages+0x2a0/0x570) from [<c00fbff0>] (__alloc_pages_nodemask+0x424/0x758) <4>[44330.863812] [<c00fbff0>] (__alloc_pages_nodemask+0x424/0x758) from [<c0116dcc>] (handle_pte_fault+0x184/0x7c8) <4>[44330.863934] [<c0116dcc>] (handle_pte_fault+0x184/0x7c8) from [<c011751c>] (handle_mm_fault+0x10c/0x128) <4>[44330.864057] [<c011751c>] (handle_mm_fault+0x10c/0x128) from [<c0732cc0>] (do_page_fault+0x180/0x3c0) <4>[44330.864148] [<c0732cc0>] (do_page_fault+0x180/0x3c0) from [<c000847c>] (do_DataAbort+0x134/0x1a8) <4>[44330.864270] [<c000847c>] (do_DataAbort+0x134/0x1a8) from [<c07316f4>] (__dabt_usr+0x34/0x40) <4>[44330.864331] Exception stack(0xc7439fb0 to 0xc7439ff8) <4>[44330.864453] 9fa0: 40baa000 40fab040 0002d440 00000000 <4>[44330.864545] 9fc0: 41ed0f10 00000001 408d72c0 41ed0f2c 0000001c 00000000 40fab400 00000001 <4>[44330.864606] 9fe0: 00000380 59c70e10 00000400 40209364 20000010 ffffffff ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-06-03 10:27 ` Will Deacon @ 2013-06-03 10:45 ` Russell King - ARM Linux 2013-06-03 12:39 ` Will Deacon 0 siblings, 1 reply; 36+ messages in thread From: Russell King - ARM Linux @ 2013-06-03 10:45 UTC (permalink / raw) To: Will Deacon Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Mon, Jun 03, 2013 at 11:27:23AM +0100, Will Deacon wrote: > Hi Russell, > > On Mon, Jun 03, 2013 at 11:18:09AM +0100, Russell King - ARM Linux wrote: > > On Thu, May 30, 2013 at 12:41:12PM +0100, Will Deacon wrote: > > > +#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) > > > + /* > > > + * We may have faulted trying to load the SWI instruction due to > > > + * concurrent page aging on another CPU. In this case, return > > > + * back to the swi instruction and fault the page back. > > > + */ > > > +9001: > > > + sub lr, lr, #4 > > > + str lr, [sp, #S_PC] > > > + b ret_fast_syscall > > > +#endif > > > > The comment is wrong. If we get here, it means that the fault from > > trying to loading the instruction can't be fixed up. Arguably, that > > should result in a SIGSEGV being sent immediately, but we'll get to > > that when we then try to re-load the instruction. > > Why would we kill the application in this case? The reported problem is > where one CPU ages the page containing the swi instruction (mkold => > clears L_PTE_YOUNG => write 0 to the pte) in between the other CPU executing > the swi and the kernel trying to read the immediate. The VMA is fine. If you mark the instruction was a user-accessing instruction, the kernel will handle the resulting exception, trying to make the page accessible. If it is successful, then execution resumes as normal at the faulting instruction and continues as if nothing happened. If it can't make the page accessible (eg, out of memory) the exception handler path (your code above) will be called instead. Normal action in that case would be for a system call to return -EFAULT, but in this case we can't know what the syscall was, so we don't know if userspace will even pay attention to the returned error code. In any case, if the page is no longer accessible, it's going to end up being killed by a SEGV when we eventually return to userspace anyway. > > What it means is that the page we were trying to execute has been > > unmapped beneath us. > > Yes, as a result of the kernel aging it. No - see above. The exception path is for more serious conditions than that. ^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: A bug about system call on ARM 2013-06-03 10:45 ` Russell King - ARM Linux @ 2013-06-03 12:39 ` Will Deacon 0 siblings, 0 replies; 36+ messages in thread From: Will Deacon @ 2013-06-03 12:39 UTC (permalink / raw) To: Russell King - ARM Linux Cc: Wang, Yalin, 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org', 'linux-arm-kernel@lists.infradead.org' On Mon, Jun 03, 2013 at 11:45:34AM +0100, Russell King - ARM Linux wrote: > On Mon, Jun 03, 2013 at 11:27:23AM +0100, Will Deacon wrote: > > On Mon, Jun 03, 2013 at 11:18:09AM +0100, Russell King - ARM Linux wrote: > > > On Thu, May 30, 2013 at 12:41:12PM +0100, Will Deacon wrote: > > > > +#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) > > > > + /* > > > > + * We may have faulted trying to load the SWI instruction due to > > > > + * concurrent page aging on another CPU. In this case, return > > > > + * back to the swi instruction and fault the page back. > > > > + */ > > > > +9001: > > > > + sub lr, lr, #4 > > > > + str lr, [sp, #S_PC] > > > > + b ret_fast_syscall > > > > +#endif > > > > > > The comment is wrong. If we get here, it means that the fault from > > > trying to loading the instruction can't be fixed up. Arguably, that > > > should result in a SIGSEGV being sent immediately, but we'll get to > > > that when we then try to re-load the instruction. > > > > Why would we kill the application in this case? The reported problem is > > where one CPU ages the page containing the swi instruction (mkold => > > clears L_PTE_YOUNG => write 0 to the pte) in between the other CPU executing > > the swi and the kernel trying to read the immediate. The VMA is fine. > > If you mark the instruction was a user-accessing instruction, the kernel > will handle the resulting exception, trying to make the page accessible. > If it is successful, then execution resumes as normal at the faulting > instruction and continues as if nothing happened. > > If it can't make the page accessible (eg, out of memory) the exception > handler path (your code above) will be called instead. Normal action in > that case would be for a system call to return -EFAULT, but in this case > we can't know what the syscall was, so we don't know if userspace will > even pay attention to the returned error code. In any case, if the page > is no longer accessible, it's going to end up being killed by a SEGV > when we eventually return to userspace anyway. Yes, of course, the fault handling will sort out non-fatal faults for us, so I'll update the comment. Thanks, Will ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-29 8:24 ` Wang, Yalin 2013-05-29 8:46 ` richard -rw- weinberger @ 2013-05-29 8:54 ` Mikael Pettersson 2013-05-29 8:54 ` Mikael Pettersson 1 sibling, 1 reply; 36+ messages in thread From: Mikael Pettersson @ 2013-05-29 8:54 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org' Wang, Yalin writes: > Hi > > I have download the latest linux kernel code 3.9.4 > And Compare with 3.4.0 kernel . > > It seems there is no change for this part , > So it will still happen . > Does anyone know who is responsible for arm arch part kernel code ? A quick look in MAINTAINNERS would have told you: ARM PORT ... L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) Please direct ARM-specific questions to that list. ^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: A bug about system call on ARM 2013-05-29 8:54 ` Mikael Pettersson @ 2013-05-29 8:54 ` Mikael Pettersson 0 siblings, 0 replies; 36+ messages in thread From: Mikael Pettersson @ 2013-05-29 8:54 UTC (permalink / raw) To: Wang, Yalin Cc: 'richard -rw- weinberger', 'linux-arch@vger.kernel.org', 'linux-kernel@vger.kernel.org' Wang, Yalin writes: > Hi > > I have download the latest linux kernel code 3.9.4 > And Compare with 3.4.0 kernel . > > It seems there is no change for this part , > So it will still happen . > Does anyone know who is responsible for arm arch part kernel code ? A quick look in MAINTAINNERS would have told you: ARM PORT ... L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) Please direct ARM-specific questions to that list. ^ permalink raw reply [flat|nested] 36+ messages in thread
end of thread, other threads:[~2013-06-14 6:53 UTC | newest] Thread overview: 36+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-05-29 6:52 A bug about system call on ARM Wang, Yalin 2013-05-29 7:34 ` richard -rw- weinberger 2013-05-29 7:37 ` Wang, Yalin 2013-05-29 8:24 ` Wang, Yalin 2013-05-29 8:46 ` richard -rw- weinberger 2013-05-29 9:48 ` Will Deacon 2013-05-29 9:50 ` Wang, Yalin 2013-05-30 1:41 ` Wang, Yalin 2013-05-30 9:09 ` Will Deacon 2013-05-30 11:41 ` Will Deacon 2013-05-30 11:41 ` Will Deacon 2013-05-31 2:56 ` Wang, Yalin 2013-05-31 8:46 ` Will Deacon 2013-05-31 11:02 ` Wang, Yalin 2013-05-31 11:13 ` Will Deacon 2013-05-31 11:30 ` Wang, Yalin 2013-06-03 5:25 ` Wang, Yalin 2013-06-03 9:54 ` Will Deacon 2013-06-03 9:58 ` Wang, Yalin 2013-06-04 5:33 ` Wang, Yalin 2013-06-04 8:48 ` Will Deacon 2013-06-04 8:48 ` Will Deacon 2013-06-04 9:30 ` Wang, Yalin 2013-06-04 11:27 ` Will Deacon 2013-06-14 6:53 ` Wang, Yalin 2013-05-31 16:48 ` Nicolas Pitre 2013-05-31 16:52 ` Will Deacon 2013-05-31 3:54 ` Nicolas Pitre 2013-05-31 3:54 ` Nicolas Pitre 2013-05-31 8:45 ` Will Deacon 2013-06-03 10:18 ` Russell King - ARM Linux 2013-06-03 10:27 ` Will Deacon 2013-06-03 10:45 ` Russell King - ARM Linux 2013-06-03 12:39 ` Will Deacon 2013-05-29 8:54 ` Mikael Pettersson 2013-05-29 8:54 ` Mikael Pettersson
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).