內存碎片導致應用不斷被殺的問題

內存分配一波三折,小結一下:
1.      先嚐試快速分配,其中會從不同的zone以及遷移類型上去嘗試,失敗的話就進入慢速分配,裏面會再劃分單頁面從pcp上分配以及多頁面從夥伴系統中分配。
2.      嘗試慢速分配,一般流程就是喚醒內存頁面回收線程,然後嘗試低水位分配 -> 忽略水位分配 -> 壓縮內存分配 -> 直接回收內存分配 -> oom killer殺死線程分配 -> 壓縮內存分配。


1、爲什麼殺進程是最後殺,失敗了好多次這個分配page之後? 看代碼
2、分配內存需要連續的空間嗎?
zygote: page allocation failure: order:2, mode:0xd0, order:2表示需要分配2個連續的page,爲0時表示每次分配一頁。
3、CONFIG_COMPACTION 是什麼原理?
4、linux的內存管理原理
5、社麼是夥伴系統
6、TLB
7、Normal: 10141*4kB 7*8kB 0*16kB 0*32kB 0*64kB 0*128k 這些page是如何預定義的?
這是所謂的大小內存頁,用於提供性能(TLB page fault失敗率降低)及減少頁表管理的內存消耗代價。
大內存頁
典型地,內存管理器在 x86 系統上處理的內存頁爲 4 KB。實際的頁大小是與體系結構相關的。對大部分用途來說,內存管理器以這樣大小的頁來管理內存是最有效的。不過,有一些應用程序要使用特別多的內存。大型數據庫就是其中一個常見的例子。由於每個頁都要由每個進程映射,必須創建頁表條目來將虛擬地址映射到物理地址。如果您的一個進程要使用 4KB 的頁來映射 1 GB 內存,這將用到 262,144 個頁表條目來保持對那些頁的追蹤。如果每個頁表條目消耗 8 個字節,那些每映射 1 GB 內存需要 2 MB 的開銷。這本身就已經是非常可觀的開銷了,不過,如果有多個進程共享那些內存時,問題會變得更嚴重。在這種情況下,每個映射到同一塊 1 GB 內存的進程將爲頁表條目付出自己 2 MB 的代價。如果有足夠多的進程,內存在開銷上的浪費可能會超過應用程序請求使用的內存數量。
解決這一問題的一個方法是使用更大的頁。大部分新的處理器都支持至少一個小的和一個大的內存頁大小。在 x86 上,大內存頁的大小是 4 MB,或者,在物理地址擴展(PAE)打開的系統上是 2 MB。假定在前面的中使用頁大小爲 4 MB 的大內存頁,同樣 1 GB 內存只用 256 個頁表條目就可以映射,而不需要 262,144 個。這樣開銷從 2 MB 變爲 2,048 個字節。
大內存頁的使用還可以通過減少 變換索引緩衝(translation lookaside buffer, TLB)的失敗次數來提高性能。TLB 是一種頁表的高速緩存,讓那些在表中列出的頁可以更快地進行虛擬地址到物理地址的轉換。大內存頁可以用更少的實際頁來提供更多的內存,相當於較小的頁大小,使用的大內存頁越多,就有越多的內存可以通過 TLB 引用。


8、週期性的檢查:這是由後臺運行的守護進程 kswapd 完成的。該進程定期檢查當前系統的內存使用情況,當發現系統內空閒的物理頁面數目少於特定的閾值時,該進程就會發起頁面回收的操作。
9、“內存嚴重不足”事件的觸發:在某些情況下,比如,操作系統忽然需要通過夥伴系統爲用戶進程分配一大塊內存,或者需要創建一個很大的緩衝區,而當時系統中的內存沒有辦法提供足夠多的物理內存以滿足這種內存請求,這時候,操作系統就必須儘快進行頁面回收操作,以便釋放出一些內存空間從而滿足上述的內存請求。這種頁面回收方式也被稱作“直接頁面回收”。
10、網上案例,log搜索
11、被殺掉的進程是否又不停的起來了,導致釋放的無效?
12、PGD=》頁面目錄數組




main_log.1


06-02 11:18:59.807   873   873 D dalvikvm: GC_EXPLICIT freed 196K, 17% free 9006K/10759K, paused 2ms+1567ms
06-02 11:19:02.146   873   873 D ActivityThread: LOW_MEMORY handled : 0 / null


06-02 11:18:18.588   873   875 D dalvikvm: GC_CONCURRENT freed 1602K, 16% free 9050K/10759K, paused 1ms+7ms
06-02 11:18:59.807   873   873 D dalvikvm: GC_EXPLICIT freed 196K, 17% free 9006K/10759K, paused 2ms+1567ms
06-02 11:19:12.318   266   268 D dalvikvm: GC_CONCURRENT freed 2211K, 35% free 18415K/28231K, paused 3ms+127ms
06-02 11:19:29.015   347   348 D dalvikvm: GC_CONCURRENT freed 5420K, 33% free 14043K/20807K, paused 2ms+1822ms
system    347   111   308084 49888 20    0     0     0     fg  ffffffff 00000000 S com.android.systemui


06-02 11:20:15.113   873   873 D dalvikvm: GC_EXPLICIT freed 455K, 17% free 9008K/10759K, paused 1ms+1ms
06-02 11:20:33.902   463   463 D dalvikvm: GC_EXPLICIT freed 4K, 9% free 9012K/9859K, paused 404ms+902ms
06-02 11:21:18.862   111   111 D dalvikvm: GC_EXPLICIT freed 39K, 10% free 8966K/9859K, paused 4ms+11ms
06-02 11:21:18.993   111   111 D dalvikvm: GC_EXPLICIT freed <1K, 10% free 8966K/9859K, paused 1ms+2ms
06-02 11:21:19.072   111   111 D dalvikvm: GC_EXPLICIT freed <1K, 10% free 8966K/9859K, paused 3ms+8ms
06-02 11:22:41.451   266   296 D dalvikvm: GC_FOR_ALLOC freed 1850K, 35% free 18481K/28231K, paused 265ms






dumpstate
app_111   17418 111   374388 109364 fg  ffffffff 00000000 S com.plandotmob.pvz


app_111   17418 111   374388 109364 20    0     0     0     fg  ffffffff 00000000 S com.plandotmob.pvz
app_111   17419 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S GC
app_111   17422 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Signal Catcher
app_111   17424 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Compiler
app_111   17425 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S ReferenceQueueD
app_111   17426 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S FinalizerDaemon
app_111   17427 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S FinalizerWatchd
app_111   17428 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Binder Thread #
app_111   17430 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Binder Thread #
app_111   18220 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S KIWI_COMMAND
app_111   18221 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S KIWI_BACKGROUND
app_111   18223 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S .ProcessManager
app_111   18225 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Thread-2066
app_111   19556 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Binder Thread #
app_111   20864 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Binder Thread #
app_111   21694 17418 374388 109364 20    0     0     0     fg  ffffffff 00000000 S Thread-2078


kernel_log:
植物大戰僵死:
<5>[60282.964412] (1)[17418] 10111 17418   111713    44098   0       0             0 .plandotmob.pvz


<4>[60253.850826] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[60253.850839] (0)Backtrace: 
<4>[60253.850869] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60253.850880] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[60253.850913] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[60253.850931] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[60253.850943] (0) r3:00000000 r2:00000000
<4>[60253.850957] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[60253.850989] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60253.851007] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60253.851023] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60253.851034] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60253.851061] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60253.851076] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60253.851094] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60253.851104] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60253.851126] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60253.851143] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b58a4>] (worker_thread+0x154/0x3bc)
<4>[60253.851161] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60253.851182] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60253.851192] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0


<4>[60264.704136] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60264.704147] (0) r7:00000002 r6:000000d0 r5:00000002 r4:cea78000
<4>[60264.704227] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00eb948>] (dump_header.clone.1+0x74/0x174)
<4>[60264.704246] (0)[<c00eb8d4>] (dump_header.clone.1+0x0/0x174) from [<c00ebab8>] (oom_kill_process.clone.0+0x70/0x214)
<4>[60264.704264] (0)[<c00eba48>] (oom_kill_process.clone.0+0x0/0x214) from [<c00ebe74>] (out_of_memory+0x218/0x2f4)
<4>[60264.704284] (0)[<c00ebc5c>] (out_of_memory+0x0/0x2f4) from [<c00efc38>] (__alloc_pages_nodemask+0x6e0/0x70c)
<4>[60264.704302] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60264.704320] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60264.704336] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60264.704347] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60264.704375] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60264.704390] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60264.704408] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60264.704419] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60264.704441] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60264.704458] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[60264.704476] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60264.704496] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60264.704507] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<3>[60264.712941] (0)Out of memory: Kill process 20289 (shouliexiaoniao) score 570 or sacrifice child
<3>[60264.712957] (0)Killed process 20289 (shouliexiaoniao) total-vm:280136kB, anon-rss:19984kB, file-rss:56kB
<7>[60264.712989] (0)[19519:kworker/0:6] sig 9 to [20289:shouliexiaoniao]




06-02 11:29:20.152 20432 20432 D AEE/AED :   Backtrace:Process: com.colourlive.fnxnshouliexiaoniao
06-02 11:29:20.152 20432 20432 D AEE/AED : Flags: 0xbe44
06-02 11:29:20.152 20432 20432 D AEE/AED : Package: com.colourlive.fnxnshouliexiaoniao v62 (1.0.62)
06-02 11:29:20.152 20432 20432 D AEE/AED : Subject: Broadcast of Intent { dat=http://16028 flg=0x14 cmp=com.colourlive.fnxnshouliexiaoniao/com.cczdt.whs.Re (has extras) }
06-02 11:29:20.152 20432 20432 D AEE/AED : Build: vivo/bbk17_td3001_ics2/bbk17_td3001_ics2:4.0.4/IMM76D/:user/test-keys
06-02 11:29:20.152 20432 20432 D AEE/AED : 
06-02 11:29:20.152 20432 20432 D AEE/AED : CPU usage from 0ms to 38986ms later with 99% awake:
06-02 11:29:20.152 20432 20432 D AEE/AED :   27% 19519/kworker/0:6: 0% user + 27% kernel
kworker/0:6 在申請內存出問題,導致上層ANR,但是ANR爲什麼不能快速出來,而是很久纔出來呢。
如果能夠快速出來也是件好事,可以快速恢復。




<4>[59847.658563] (0)zygote: page allocation failure: order:2, mode:0xd0
<4>[59847.658576] (0)Backtrace: 
<4>[59847.658606] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59847.658618] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59847.658651] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59847.658670] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59847.658682] (0) r3:00000000 r2:00000000
<4>[59847.658695] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59847.658727] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59847.658745] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59847.658764] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c009da04>] (mm_init+0xc4/0x10c)
<4>[59847.658774] (0) r7:dc8e4000 r6:c0745500 r5:00000000 r4:d2a3c1c0
<4>[59847.658802] (0)[<c009d940>] (mm_init+0x0/0x10c) from [<c009dda4>] (dup_mm+0x80/0x484)
<4>[59847.658813] (0) r7:dc8e4000 r6:dc8e4000 r5:d2a3c1c0 r4:c2316000
<4>[59847.658840] (0)[<c009dd24>] (dup_mm+0x0/0x484) from [<c009ec4c>] (copy_process+0xa18/0xeac)
<4>[59847.658856] (0)[<c009e234>] (copy_process+0x0/0xeac) from [<c009f1a4>] (do_fork+0xc4/0x324)
<4>[59847.658873] (0)[<c009f0e0>] (do_fork+0x0/0x324) from [<c0044068>] (sys_fork+0x30/0x38)
<4>[59847.658889] (0)[<c0044038>] (sys_fork+0x0/0x38) from [<c0040c00>] (ret_fast_syscall+0x0/0x30)
<4>[59847.658899] (0)Mem-info:
<4>[59847.658907] (0)Normal per-cpu:
<4>[59847.658916] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[59847.658932] (0)active_anon:74038 inactive_anon:843 isolated_anon:0
<4>[59847.658937] (0) active_file:91 inactive_file:246 isolated_file:0
<4>[59847.658942] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59847.658947] (0) free:12219 slab_reclaimable:601 slab_unreclaimable:3076
<4>[59847.658953] (0) mapped:23139 shmem:282 pagetables:2015 bounce:0
<4>[59847.658980] (0)Normal free:48876kB min:2808kB low:3508kB high:4212kB 
這裏因爲free的內存都大於三個閥值,所以系統並不進行頁面回收,以爲是理想的,實際是因爲有了內存碎片導致這種狀況發生。
active_anon:296152kB inactive_anon:3372kB active_file:364kB inactive_file:984kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92556kB shmem:1128kB slab_reclaimable:2404kB slab_unreclaimable:12304kB kernel_stack:4864kB pagetables:8060kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
active 鏈表和 inactive 鏈表,這兩個鏈表是 Linux 操作系統進行頁面回收所依賴的關鍵數據結構
每個內存區域都存在一對這樣的鏈表,進行頁面回收的時候,Linux 操作系統會從 inactive 鏈表的尾部開始進行回收。
看這個incactive的也就3M一點。即使回收應該也沒有多大作用吧?


<4>[59847.659008] (0)lowmem_reserve[]: 0 0 0
<4>[59847.659025] (0)Normal: 12131*4kB 44*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48876kB
<4>[59847.659071] (0)904 total pagecache pages
<4>[59847.670958] (0)124416 pages of RAM
<4>[59847.670971] (0)13042 free pages
<4>[59847.670979] (0)3303 reserved pages
<4>[59847.670986] (0)3618 slab pages
<4>[59847.670993] (0)127140 pages shared
<4>[59847.671000] (0)0 pages swap cached
<4>[59847.671012] (0)[111:zygote]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, Repeat Times:1501
<4>[59847.671076] (0)[111:zygote] fork fail retval:0xfffffff4
<4>[59847.671087] (0)[111:zygote] fork fail:[0xfffffff4, -12]




<4>[59853.890180] (0)kworker/0:2: page allocation failure: order:2, mode:0xd0
<4>[59853.890191] (0)Backtrace: 
<4>[59853.890222] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59853.890234] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59853.890266] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59853.890285] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59853.890296] (0) r3:00000000 r2:00000000
<4>[59853.890568] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59853.890606] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59853.890625] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59853.890642] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[59853.890653] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[59853.890681] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[59853.890696] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[59853.890714] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[59853.890724] (0) r5:c0ca21e0 r4:dcec2300
<4>[59853.890746] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[59853.890763] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[59853.890780] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[59853.890801] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[59853.890812] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:d08b5ea0
<4>[59853.890834] (0)Mem-info:
<4>[59853.890842] (0)Normal per-cpu:
<4>[59853.890851] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[59853.890868] (0)active_anon:74154 inactive_anon:843 isolated_anon:0
<4>[59853.890873] (0) active_file:65 inactive_file:138 isolated_file:0
<4>[59853.890878] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59853.890884] (0) free:12224 slab_reclaimable:601 slab_unreclaimable:3076
<4>[59853.890889] (0) mapped:23107 shmem:282 pagetables:2021 bounce:0
<4>[59853.890916] (0)Normal free:48896kB min:2808kB low:3508kB high:4212kB active_anon:296616kB inactive_anon:3372kB active_file:260kB inactive_file:552kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92428kB shmem:1128kB slab_reclaimable:2404kB slab_unreclaimable:12304kB kernel_stack:4896kB pagetables:8084kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[59853.890945] (0)lowmem_reserve[]: 0 0 0
<4>[59853.890962] (0)Normal: 12150*4kB 37*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48896kB
<4>[59853.891245] (0)776 total pagecache pages
<4>[59853.901286] (0)124416 pages of RAM
<4>[59853.901298] (0)13029 free pages
<4>[59853.901306] (0)3303 reserved pages
<4>[59853.901313] (0)3615 slab pages
<4>[59853.901320] (0)127024 pages shared
<4>[59853.901327] (0)0 pages swap cached
<4>[59853.901340] (0)[17859:kworker/0:2]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, Repeat Times:1501
<7>[59853.901356] (0)[cpu_ntf] 04_00, c0517c2c




<4>[59862.574993] (0)kworker/0:2: page allocation failure: order:2, mode:0xd0
<4>[59862.575006] (0)Backtrace: 
<4>[59862.575036] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59862.575048] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59862.575081] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59862.575098] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59862.575111] (0) r3:00000000 r2:00000000
<4>[59862.575124] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59862.575156] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59862.575175] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59862.575190] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[59862.575201] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[59862.575228] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[59862.575244] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[59862.575261] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[59862.575272] (0) r5:c0ca21e0 r4:dcec2300
<4>[59862.575294] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[59862.575312] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[59862.575329] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[59862.575350] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[59862.575360] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:d08b5ea0
<4>[59862.575382] (0)Mem-info:
<4>[59862.575389] (0)Normal per-cpu:
<4>[59862.575399] (0)CPU    0: hi:  186, btch:  31 usd:  22
<4>[59862.575415] (0)active_anon:74151 inactive_anon:843 isolated_anon:0
<4>[59862.575420] (0) active_file:115 inactive_file:180 isolated_file:0
<4>[59862.575426] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59862.575430] (0) free:12097 slab_reclaimable:601 slab_unreclaimable:3076
<4>[59862.575436] (0) mapped:23158 shmem:282 pagetables:2021 bounce:0
<4>[59862.575462] (0)Normal free:48388kB min:2808kB low:3508kB high:4212kB active_anon:296604kB inactive_anon:3372kB active_file:460kB inactive_file:720kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92632kB shmem:1128kB slab_reclaimable:2404kB slab_unreclaimable:12304kB kernel_stack:4896kB pagetables:8084kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[59862.575491] (0)lowmem_reserve[]: 0 0 0
<4>[59862.575508] (0)Normal: 12025*4kB 36*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48388kB
<4>[59862.575555] (0)874 total pagecache pages
<4>[59862.585094] (0)124416 pages of RAM
<4>[59862.585107] (0)12913 free pages
<4>[59862.585114] (0)3303 reserved pages
<4>[59862.585121] (0)3616 slab pages
<4>[59862.585128] (0)127068 pages shared
<4>[59862.585135] (0)0 pages swap cached
<4>[59862.585148] (0)[17859:kworker/0:2]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, Repeat Times:1501
<7>[59862.585164] (0)[cpu_ntf] 04_00, c0517c2c




<4>[59879.610299] (0)kpd: Power Key generate, pressed=1
<4>[59879.610337] (0)kpd: (pressed) HW keycode =116 using PMIC
<4>[59879.610933] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[59879.610944] (0)Backtrace: 
<4>[59879.611001] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59879.611013] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59879.611075] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59879.611120] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59879.611133] (0) r3:00000000 r2:00000000
<4>[59879.611147] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59879.611205] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59879.611248] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59879.611266] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[59879.611300] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[59879.611330] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[59879.611369] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[59879.611387] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[59879.611398] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[59879.611447] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[59879.611489] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b58a4>] (worker_thread+0x154/0x3bc)
<4>[59879.611507] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[59879.611528] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[59879.611564] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[59879.611586] (0)Mem-info:
<4>[59879.611713] (0)Normal per-cpu:
<4>[59879.611724] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[59879.611741] (0)active_anon:74171 inactive_anon:843 isolated_anon:0
<4>[59879.611746] (0) active_file:100 inactive_file:125 isolated_file:0
<4>[59879.611752] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59879.611757] (0) free:12190 slab_reclaimable:602 slab_unreclaimable:3075
<4>[59879.611762] (0) mapped:23142 shmem:282 pagetables:2019 bounce:0
<4>[59879.611898] (0)Normal free:48760kB min:2808kB low:3508kB high:4212kB active_anon:296684kB inactive_anon:3372kB active_file:400kB inactive_file:500kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92568kB shmem:1128kB slab_reclaimable:2408kB slab_unreclaimable:12300kB kernel_stack:4872kB pagetables:8076kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[59879.612105] (0)lowmem_reserve[]: 0 0 0
<4>[59879.612125] (0)Normal: 12108*4kB 41*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48760kB
<4>[59879.612173] (0)801 total pagecache pages
<4>[59879.633648] (0)124416 pages of RAM
<4>[59879.638556] (0)12949 free pages
<4>[59879.638567] (0)3303 reserved pages
<4>[59879.638575] (0)3615 slab pages
<4>[59879.638582] (0)127050 pages shared
<4>[59879.638589] (0)0 pages swap cached
<4>[59879.638633] (0)[19519:kworker/0:6]Null page is returned, order:2, gfp_mask:0xd0, allo


<4>[59887.816683] (0)kpd: (released) HW keycode =116 using PMIC
<4>[59887.837985] (0)zygote: page allocation failure: order:2, mode:0xd0
<4>[59887.837998] (0)Backtrace: 
<4>[59887.838028] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59887.838040] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59887.838074] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59887.838092] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59887.838104] (0) r3:00000000 r2:00000000
<4>[59887.838117] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59887.838149] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59887.838168] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59887.838187] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c009da04>] (mm_init+0xc4/0x10c)
<4>[59887.838197] (0) r7:dc8e4000 r6:c0745500 r5:00000000 r4:d2a3c1c0
<4>[59887.838224] (0)[<c009d940>] (mm_init+0x0/0x10c) from [<c009dda4>] (dup_mm+0x80/0x484)
<4>[59887.838235] (0) r7:dc8e4000 r6:dc8e4000 r5:d2a3c1c0 r4:c7f36440
<4>[59887.838262] (0)[<c009dd24>] (dup_mm+0x0/0x484) from [<c009ec4c>] (copy_process+0xa18/0xeac)
<4>[59887.838278] (0)[<c009e234>] (copy_process+0x0/0xeac) from [<c009f1a4>] (do_fork+0xc4/0x324)
<4>[59887.838295] (0)[<c009f0e0>] (do_fork+0x0/0x324) from [<c0044068>] (sys_fork+0x30/0x38)
<4>[59887.838312] (0)[<c0044038>] (sys_fork+0x0/0x38) from [<c0040c00>] (ret_fast_syscall+0x0/0x30)
<4>[59887.838322] (0)Mem-info:
<4>[59887.838329] (0)Normal per-cpu:
<4>[59887.838338] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[59887.838355] (0)active_anon:74176 inactive_anon:843 isolated_anon:0
<4>[59887.838360] (0) active_file:107 inactive_file:122 isolated_file:0
<4>[59887.838366] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59887.838371] (0) free:12180 slab_reclaimable:602 slab_unreclaimable:3075
<4>[59887.838376] (0) mapped:23145 shmem:282 pagetables:2019 bounce:0
<4>[59887.838411] (0)Normal free:48720kB min:2808kB low:3508kB high:4212kB active_anon:296704kB inactive_anon:3372kB active_file:428kB inactive_file:488kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92580kB shmem:1128kB slab_reclaimable:2408kB slab_unreclaimable:12300kB kernel_stack:4872kB pagetables:8076kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[59887.838440] (0)lowmem_reserve[]: 0 0 0
<4>[59887.838457] (0)Normal: 12098*4kB 41*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48720kB
<4>[59887.840622] (0)798 total pagecache pages
<4>[59887.861161] (0)124416 pages of RAM
<4>[59887.861173] (0)12952 free pages
<4>[59887.861180] (0)3303 reserved pages
<4>[59887.861188] (0)3615 slab pages
<4>[59887.861195] (0)127080 pages shared
<4>[59887.861201] (0)0 pages swap cached
<4>[59887.861213] (0)[111:zygote]Null page is returned, order:2, gfp_mask:0xd0, alloc




<4>[59893.500147] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[59893.500161] (0)Backtrace: 
<4>[59893.500190] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59893.500202] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59893.500236] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59893.500254] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59893.500266] (0) r3:00000000 r2:00000000
<4>[59893.500279] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59893.500312] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59893.500330] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59893.500357] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[59893.500368] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[59893.500396] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[59893.500411] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[59893.500429] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[59893.500439] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[59893.500462] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[59893.500479] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[59893.500497] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[59893.500517] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[59893.500528] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[59893.500549] (0)Mem-info:
<4>[59893.500557] (0)Normal per-cpu:
<4>[59893.500566] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[59893.500583] (0)active_anon:74176 inactive_anon:843 isolated_anon:0
<4>[59893.500588] (0) active_file:85 inactive_file:146 isolated_file:0
<4>[59893.500593] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59893.500598] (0) free:12179 slab_reclaimable:602 slab_unreclaimable:3076
<4>[59893.500604] (0) mapped:23129 shmem:282 pagetables:2019 bounce:0
<4>[59893.500631] (0)Normal free:48716kB min:2808kB low:3508kB high:4212kB active_anon:296704kB inactive_anon:3372kB active_file:340kB inactive_file:584kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92516kB shmem:1128kB slab_reclaimable:2408kB slab_unreclaimable:12304kB kernel_stack:4864kB pagetables:8076kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[59893.500659] (0)lowmem_reserve[]: 0 0 0
<4>[59893.500677] (0)Normal: 12095*4kB 42*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48716kB
<4>[59893.500725] (0)806 total pagecache pages
<4>[59893.509686] (0)124416 pages of RAM
<4>[59893.509698] (0)12999 free pages
<4>[59893.509706] (0)3303 reserved pages
<4>[59893.509714] (0)3615 slab pages
<4>[59893.509720] (0)126984 pages shared
<4>[59893.509727] (0)0 pages swap cached
<4>[59893.509740] (0)[19519:kworker/0:6]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, Repeat Times:1501
<7>[59893.509756] (0)[cpu_ntf] 04_00, c0517c2c


<6>[59903.209613] (0)binder: 1564873 exec 19449:19471 to 266:0 total 52.484 sec (activity) dex_code 63 start_at 65253.829 2013-06-02 03:21:37.294
<6>[59903.224877] (0)binder: 1564916 exec 19501:19501 to 266:0 total 52.421 sec (activity) dex_code 17 start_at 65253.908 2013-06-02 03:21:37.373
<6>[59903.256837] (0)binder: 1565064 exec 18599:19046 to 266:0 total 40.382 sec (activity) dex_code 14 start_at 65265.979 2013-06-02 03:21:49.444
<5>[59903.293863] (0)[Power/Alarm] alarm wait (0x0)
<6>[59903.297911] (0)binder: 1564911 exec 450:450 to 266:0 total 52.498 sec (telephony.registry) dex_code 4 start_at 65253.903 2013-06-02 03:21:37.369
<5>[59903.474637] (0)[Power/clkmgr] [freq_meter] data = 15494, freq = 196 MHz
<4>[59903.610222] (0)kworker/0:0: page allocation failure: order:2, mode:0xd0
<4>[59903.610235] (0)Backtrace: 
<4>[59903.610265] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59903.610277] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59903.610309] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59903.610328] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59903.610340] (0) r3:00000000 r2:00000000
<4>[59903.610353] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59903.610385] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59903.610403] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59903.610419] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[59903.610430] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[59903.610496] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[59903.610513] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<6>[59903.610553] (0)[Power/Battery] [upmu_is_chr_det] No charger
<4>[59903.610827] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[59903.610840] (0) r5:c0ca21e0 r4:d77902c0
<4>[59903.610892] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[59903.610935] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b58a4>] (worker_thread+0x154/0x3bc)
<4>[59903.610953] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[59903.610999] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[59903.611011] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dcd97ea0
<4>[59903.611059] (0)Mem-info:
<4>[59903.611067] (0)Normal per-cpu:
<4>[59903.611076] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[59903.611117] (0)active_anon:74212 inactive_anon:843 isolated_anon:0
<4>[59903.611123] (0) active_file:106 inactive_file:145 isolated_file:0
<4>[59903.611128] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59903.611133] (0) free:12113 slab_reclaimable:602 slab_unreclaimable:3076
<4>[59903.611138] (0) mapped:23145 shmem:282 pagetables:2020 bounce:0
<4>[59903.611189] (0)Normal free:48452kB min:2808kB low:3508kB high:4212kB active_anon:296848kB inactive_anon:3372kB active_file:424kB inactive_file:580kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92580kB shmem:1128kB slab_reclaimable:2408kB slab_unreclaimable:12304kB kernel_stack:4880kB pagetables:8080kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[59903.611241] (0)lowmem_reserve[]: 0 0 0
<4>[59903.611260] (0)Normal: 12039*4kB 37*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48452kB
<4>[59903.611331] (0)829 total pagecache pages
<4>[59903.622512] (0)124416 pages of RAM
<4>[59903.622524] (0)12931 free pages
<4>[59903.622531] (0)3303 reserved pages
<4>[59903.622539] (0)3616 slab pages
<4>[59903.622546] (0)127366 pages shared
<4>[59903.622553] (0)0 pages swap cached
<4>[59903.622565] (0)[17990:kworker/0:0]Null page is returned, order:2, gfp_mask:0xd0, alloc




<6>[59911.484235] (0)binder: 1566597 exec 19449:19471 to 266:0 over 4.006 sec (alarm) dex_code 6 start_at 65310.582 2013-06-02 03:22:34.047
<4>[59911.557929] (0)kworker/0:0: page allocation failure: order:2, mode:0xd0
<4>[59911.557942] (0)Backtrace: 
<4>[59911.557973] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[59911.557984] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[59911.558017] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[59911.558294] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[59911.558308] (0) r3:00000000 r2:00000000
<4>[59911.558322] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[59911.558356] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[59911.558374] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[59911.558391] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[59911.558401] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[59911.558428] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[59911.558443] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[59911.558460] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[59911.558470] (0) r5:c0ca21e0 r4:d77902c0
<4>[59911.558493] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[59911.558509] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[59911.558526] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[59911.558547] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[59911.558557] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dcd97ea0
<4>[59911.558578] (0)Mem-info:
<4>[59911.558586] (0)Normal per-cpu:
<4>[59911.558595] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[59911.558611] (0)active_anon:74212 inactive_anon:843 isolated_anon:0
<4>[59911.558616] (0) active_file:118 inactive_file:135 isolated_file:0
<4>[59911.558622] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[59911.558627] (0) free:12118 slab_reclaimable:602 slab_unreclaimable:3076
<4>[59911.558632] (0) mapped:23155 shmem:282 pagetables:2020 bounce:0
<4>[59911.558659] (0)Normal free:48472kB min:2808kB low:3508kB high:4212kB active_anon:296848kB inactive_anon:3372kB active_file:472kB inactive_file:540kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15636kB dirty:0kB writeback:0kB mapped:92620kB shmem:1128kB slab_reclaimable:2408kB slab_unreclaimable:12304kB kernel_stack:4880kB pagetables:8080kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[59911.558687] (0)lowmem_reserve[]: 0 0 0
<4>[59911.558705] (0)Normal: 12046*4kB 36*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 48472kB
<4>[59911.558752] (0)819 total pagecache pages
<4>[59911.568688] (0)124416 pages of RAM
<4>[59911.568700] (0)12911 free pages
<4>[59911.568708] (0)3303 reserved pages
<4>[59911.568716] (0)3615 slab pages
<4>[59911.568723] (0)127119 pages shared
<4>[59911.568730] (0)0 pages swap cached
<4>[59911.568742] (0)[17990:kworker/0:0]Null page is returned, order:2, gfp_mask:0xd0, alloc_fl








<4>[60203.004937] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[60203.004949] (0)Backtrace: 
<4>[60203.004979] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60203.004991] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[60203.005024] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[60203.005042] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[60203.005054] (0) r3:00000000 r2:00000000
<4>[60203.005067] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[60203.005099] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60203.005117] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60203.005134] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60203.005144] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60203.005171] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60203.005186] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60203.005203] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60203.005525] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60203.005554] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60203.005733] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b58a4>] (worker_thread+0x154/0x3bc)
<4>[60203.005752] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60203.005774] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60203.005785] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[60203.005807] (0)Mem-info:
<4>[60203.005814] (0)Normal per-cpu:
<4>[60203.005824] (0)CPU    0: hi:  186, btch:  31 usd:   6
<4>[60203.005841] (0)active_anon:82284 inactive_anon:835 isolated_anon:0
<4>[60203.005846] (0) active_file:74 inactive_file:116 isolated_file:0
<4>[60203.005851] (0) unevictable:337 dirty:0 writeback:1 unstable:0
<4>[60203.005856] (0) free:11323 slab_reclaimable:605 slab_unreclaimable:3040
<4>[60203.005862] (0) mapped:15966 shmem:282 pagetables:2019 bounce:0
<4>[60203.005889] (0)Normal free:45292kB min:2808kB low:3508kB high:4212kB active_anon:329136kB inactive_anon:3340kB active_file:296kB inactive_file:464kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15240kB dirty:0kB writeback:4kB mapped:63864kB shmem:1128kB slab_reclaimable:2420kB slab_unreclaimable:12160kB kernel_stack:4832kB pagetables:8076kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[60203.005918] (0)lowmem_reserve[]: 0 0 0
<4>[60203.005935] (0)Normal: 10173*4kB 575*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 45292kB
<4>[60203.005982] (0)772 total pagecache pages
<4>[60203.016434] (0)124416 pages of RAM
<4>[60203.016447] (0)12020 free pages
<4>[60203.016455] (0)3303 reserved pages
<4>[60203.016462] (0)3576 slab pages
<4>[60203.016469] (0)120305 pages shared
<4>[60203.016476] (0)0 pages swap cached
<4>[60203.016488] (0)[19519:kworker/0:6]Null page is returned, order:2, gfp_mask:0xd0, alloc




<4>[60215.763672] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[60215.763686] (0)Backtrace: 
<4>[60215.763715] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60215.763727] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[60215.763760] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[60215.763778] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[60215.763790] (0) r3:00000000 r2:00000000
<4>[60215.763804] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[60215.763836] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60215.763854] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60215.763871] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60215.763881] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60215.763907] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60215.763922] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60215.763940] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60215.763951] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60215.763973] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60215.763990] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[60215.764007] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60215.764028] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60215.764038] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[60215.764059] (0)Mem-info:
<4>[60215.764067] (0)Normal per-cpu:
<4>[60215.764076] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[60215.764092] (0)active_anon:82520 inactive_anon:835 isolated_anon:0
<4>[60215.764098] (0) active_file:106 inactive_file:192 isolated_file:0
<4>[60215.764103] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[60215.764108] (0) free:10969 slab_reclaimable:600 slab_unreclaimable:3038
<4>[60215.764114] (0) mapped:15976 shmem:282 pagetables:2029 bounce:0
<4>[60215.764141] (0)Normal free:43876kB min:2808kB low:3508kB high:4212kB active_anon:330080kB inactive_anon:3340kB active_file:424kB inactive_file:768kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15240kB dirty:0kB writeback:0kB mapped:63904kB shmem:1128kB slab_reclaimable:2400kB slab_unreclaimable:12152kB kernel_stack:4896kB pagetables:8116kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[60215.768107] (0)lowmem_reserve[]: 0 0 0
<4>[60215.768129] (0)Normal: 9803*4kB 569*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 43764kB
<4>[60215.768176] (0)900 total pagecache pages
<4>[60215.779999] (0)124416 pages of RAM
<4>[60215.780012] (0)11753 free pages
<4>[60215.780020] (0)3303 reserved pages
<4>[60215.780027] (0)3576 slab pages
<4>[60215.780034] (0)119784 pages shared
<4>[60215.780041] (0)0 pages swap cached
<4>[60215.780053] (0)[19519:kworker/0:6]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x000




<4>[60229.715094] (0)zygote: page allocation failure: order:2, mode:0xd0
<4>[60229.715108] (0)Backtrace: 
<4>[60229.715140] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60229.715151] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[60229.715184] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[60229.715202] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[60229.715214] (0) r3:00000000 r2:00000000
<4>[60229.715227] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[60229.715259] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60229.715277] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60229.715296] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c009da04>] (mm_init+0xc4/0x10c)
<4>[60229.715307] (0) r7:dc8e4000 r6:c0745500 r5:00000000 r4:dbc2ba80
<4>[60229.715334] (0)[<c009d940>] (mm_init+0x0/0x10c) from [<c009dda4>] (dup_mm+0x80/0x484)
<4>[60229.715345] (0) r7:dc8e4000 r6:dc8e4000 r5:dbc2ba80 r4:d2831000
<4>[60229.715372] (0)[<c009dd24>] (dup_mm+0x0/0x484) from [<c009ec4c>] (copy_process+0xa18/0xeac)
<4>[60229.715388] (0)[<c009e234>] (copy_process+0x0/0xeac) from [<c009f1a4>] (do_fork+0xc4/0x324)
<4>[60229.715404] (0)[<c009f0e0>] (do_fork+0x0/0x324) from [<c0044068>] (sys_fork+0x30/0x38)
<4>[60229.715421] (0)[<c0044038>] (sys_fork+0x0/0x38) from [<c0040c00>] (ret_fast_syscall+0x0/0x30)
<4>[60229.715431] (0)Mem-info:
<4>[60229.715439] (0)Normal per-cpu:
<4>[60229.715448] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[60229.715464] (0)active_anon:82526 inactive_anon:835 isolated_anon:0
<4>[60229.715469] (0) active_file:77 inactive_file:305 isolated_file:1
<4>[60229.715474] (0) unevictable:337 dirty:0 writeback:0 unstable:0
<4>[60229.715479] (0) free:10875 slab_reclaimable:599 slab_unreclaimable:3040
<4>[60229.715485] (0) mapped:15950 shmem:282 pagetables:2029 bounce:0
<4>[60229.715511] (0)Normal free:43500kB min:2808kB low:3508kB high:4212kB active_anon:330104kB inactive_anon:3340kB active_file:308kB inactive_file:1220kB unevictable:1348kB isolated(anon):0kB isolated(file):4kB present:493776kB mlocked:15240kB dirty:0kB writeback:0kB mapped:63800kB shmem:1128kB slab_reclaimable:2396kB slab_unreclaimable:12160kB kernel_stack:4888kB pagetables:8116kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[60229.715548] (0)lowmem_reserve[]: 0 0 0
<4>[60229.715567] (0)Normal: 9735*4kB 570*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 43500kB
<4>[60229.715614] (0)969 total pagecache pages
<4>[60229.727553] (0)[Sound] +DL_Handling underflow ReadIdx:1800 WriteIdx:0, DataRemained:1800, HW_cons:1800 
<7>[60229.727577] (0)[Sound] -DL_Handling 2underflow ReadIdx:0, WriteIdx:1800, DataRemained:1800 
<4>[60229.735786] (0)124416 pages of RAM
<4>[60229.735799] (0)11698 free pages
<4>[60229.735806] (0)3303 reserved pages
<4>[60229.735814] (0)3578 slab pages
<4>[60229.735821] (0)119678 pages shared
<4>[60229.735827] (0)0 pages swap cached
<4>[60229.735840] (0)[111:zygote]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, Repeat Times:1501
<4>[60229.735902] (0)[111:zygote] fork fail retval:0xfffffff4
<4>[60229.735913] (0)[111:zygote] fork fail:[0xfffffff4, -12]


<4>[60232.274323] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[60232.274334] (0)Backtrace: 
<4>[60232.274364] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60232.274376] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[60232.274408] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[60232.274426] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[60232.274438] (0) r3:00000000 r2:00000000
<4>[60232.274451] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[60232.274483] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60232.274501] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60232.274518] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60232.274528] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60232.274555] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60232.274571] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60232.274588] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60232.274599] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60232.274621] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60232.274638] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[60232.274654] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60232.274675] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60232.274685] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[60232.274706] (0)Mem-info:
<4>[60232.274713] (0)Normal per-cpu:
<4>[60232.274722] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[60232.274739] (0)active_anon:82526 inactive_anon:835 isolated_anon:0
<4>[60232.274744] (0) active_file:130 inactive_file:160 isolated_file:0
<4>[60232.274749] (0) unevictable:337 dirty:1 writeback:1 unstable:0
<4>[60232.274754] (0) free:10967 slab_reclaimable:599 slab_unreclaimable:3040
<4>[60232.274760] (0) mapped:16006 shmem:282 pagetables:2029 bounce:0
<4>[60232.274787] (0)Normal free:43868kB min:2808kB low:3508kB high:4212kB active_anon:330104kB inactive_anon:3340kB active_file:520kB inactive_file:640kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15240kB dirty:4kB writeback:4kB mapped:64024kB shmem:1128kB slab_reclaimable:2396kB slab_unreclaimable:12160kB kernel_stack:4880kB pagetables:8116kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[60232.274815] (0)lowmem_reserve[]: 0 0 0
<4>[60232.274832] (0)Normal: 9825*4kB 571*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 43868kB
<4>[60232.274880] (0)880 total pagecache pages
<4>[60232.285529] (0)124416 pages of RAM
<4>[60232.285540] (0)11744 free pages
<4>[60232.285548] (0)3303 reserved pages
<4>[60232.285556] (0)3577 slab pages
<4>[60232.285563] (0)119885 pages shared
<4>[60232.285570] (0)0 pages swap cached
<4>[60232.285582] (0)[19519:kworker/0:6]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, Repeat Times:1501
<7>[60232.285598] (0)[cpu_ntf] 04_00, c0517c2c






<4>[60241.704263] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[60241.704276] (0)Backtrace: 
<4>[60241.704306] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60241.704318] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[60241.704350] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[60241.704369] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[60241.704380] (0) r3:00000000 r2:00000000
<4>[60241.704394] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[60241.704425] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60241.704443] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60241.704459] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60241.704470] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60241.704496] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60241.704511] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60241.704528] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60241.704539] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60241.704560] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60241.704577] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[60241.704594] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60241.704615] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60241.704625] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[60241.704646] (0)Mem-info:
<4>[60241.704653] (0)Normal per-cpu:
<4>[60241.704662] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[60241.704679] (0)active_anon:82526 inactive_anon:835 isolated_anon:0
<4>[60241.704684] (0) active_file:87 inactive_file:165 isolated_file:0
<4>[60241.704689] (0) unevictable:337 dirty:1 writeback:1 unstable:0
<4>[60241.704694] (0) free:11001 slab_reclaimable:599 slab_unreclaimable:3040
<4>[60241.704699] (0) mapped:15956 shmem:282 pagetables:2029 bounce:0
<4>[60241.704727] (0)Normal free:44004kB min:2808kB low:3508kB high:4212kB active_anon:330104kB inactive_anon:3340kB active_file:348kB inactive_file:660kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15240kB dirty:4kB writeback:4kB mapped:63824kB shmem:1128kB slab_reclaimable:2396kB slab_unreclaimable:12160kB kernel_stack:4880kB pagetables:8116kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[60241.704755] (0)lowmem_reserve[]: 0 0 0
<4>[60241.704772] (0)Normal: 9863*4kB 569*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 44004kB
<4>[60241.704818] (0)840 total pagecache pages
<4>[60241.709054] (0)[Sound] +DL_Handling underflow ReadIdx:1800 WriteIdx:0, DataRemained:1800, HW_cons:1800 
<7>[60241.709080] (0)[Sound] -DL_Handling 2underflow ReadIdx:0, WriteIdx:1800, DataRemained:1800 
<4>[60241.713976] (0)124416 pages of RAM
<4>[60241.713989] (0)11786 free pages
<4>[60241.713996] (0)3303 reserved pages
<4>[60241.714003] (0)3576 slab pages
<4>[60241.714011] (0)119762 pages shared
<4>[60241.714018] (0)0 pages swap cached
<4>[60241.714030] (0)[19519:kworker/0:6]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, R






<4>[60253.850826] (0)kworker/0:6: page allocation failure: order:2, mode:0xd0
<4>[60253.850839] (0)Backtrace: 
<4>[60253.850869] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60253.850880] (0) r7:00000002 r6:00000000 r5:000000d0 r4:00000001
<4>[60253.850913] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00ef420>] (warn_alloc_failed+0x9c/0x118)
<4>[60253.850931] (0)[<c00ef384>] (warn_alloc_failed+0x0/0x118) from [<c00ef890>] (__alloc_pages_nodemask+0x338/0x70c)
<4>[60253.850943] (0) r3:00000000 r2:00000000
<4>[60253.850957] (0) r8:00000000 r7:c071bfe0 r6:c06c67d8 r5:00000040 r4:00000000
<4>[60253.850989] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60253.851007] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60253.851023] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60253.851034] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60253.851061] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60253.851076] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60253.851094] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60253.851104] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60253.851126] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60253.851143] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b58a4>] (worker_thread+0x154/0x3bc)
<4>[60253.851161] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60253.851182] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60253.851192] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[60253.851214] (0)Mem-info:
<4>[60253.851221] (0)Normal per-cpu:
<4>[60253.851231] (0)CPU    0: hi:  186, btch:  31 usd:   0
<4>[60253.851248] (0)active_anon:82411 inactive_anon:836 isolated_anon:0
<4>[60253.851253] (0) active_file:76 inactive_file:112 isolated_file:0
<4>[60253.851258] (0) unevictable:337 dirty:0 writeback:2 unstable:0
<4>[60253.851264] (0) free:11172 slab_reclaimable:603 slab_unreclaimable:3039
<4>[60253.851269] (0) mapped:15948 shmem:282 pagetables:2033 bounce:0
<4>[60253.851296] (0)Normal free:44688kB min:2808kB low:3508kB high:4212kB active_anon:329644kB inactive_anon:3344kB active_file:304kB inactive_file:448kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15240kB dirty:0kB writeback:8kB mapped:63792kB shmem:1128kB slab_reclaimable:2412kB slab_unreclaimable:12156kB kernel_stack:4904kB pagetables:8132kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
<4>[60253.851325] (0)lowmem_reserve[]: 0 0 0
<4>[60253.851342] (0)Normal: 9980*4kB 596*8kB 1*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 44704kB
<4>[60253.851389] (0)769 total pagecache pages
<4>[60253.860635] (0)124416 pages of RAM
<4>[60253.860647] (0)11974 free pages
<4>[60253.860655] (0)3303 reserved pages
<4>[60253.860662] (0)3579 slab pages
<4>[60253.860669] (0)119666 pages shared
<4>[60253.860676] (0)0 pages swap cached
<4>[60253.860688] (0)[19519:kworker/0:6]Null page is returned, order:2, gfp_mask:0xd0, alloc_flags:0x00000040, Repeat Tim






<4>[60264.704091] (0)kworker/0:6 invoked oom-killer: gfp_mask=0xd0, order=2, oom_adj=0, oom_score_adj=0
<4>[60264.704105] (0)Backtrace: 
<4>[60264.704136] (0)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60264.704147] (0) r7:00000002 r6:000000d0 r5:00000002 r4:cea78000
<4>[60264.704227] (0)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00eb948>] (dump_header.clone.1+0x74/0x174)
<4>[60264.704246] (0)[<c00eb8d4>] (dump_header.clone.1+0x0/0x174) from [<c00ebab8>] (oom_kill_process.clone.0+0x70/0x214)
<4>[60264.704264] (0)[<c00eba48>] (oom_kill_process.clone.0+0x0/0x214) from [<c00ebe74>] (out_of_memory+0x218/0x2f4)
<4>[60264.704284] (0)[<c00ebc5c>] (out_of_memory+0x0/0x2f4) from [<c00efc38>] (__alloc_pages_nodemask+0x6e0/0x70c)
<4>[60264.704302] (0)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60264.704320] (0)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60264.704336] (0)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c05172e0>] (__cpu_up+0x6c/0x24c)
<4>[60264.704347] (0) r7:00000000 r6:de5c7000 r5:c0caa000 r4:00000001
<4>[60264.704375] (0)[<c0517274>] (__cpu_up+0x0/0x24c) from [<c0518148>] (_cpu_up+0xb0/0x130)
<4>[60264.704390] (0)[<c0518098>] (_cpu_up+0x0/0x130) from [<c0518238>] (cpu_up+0x70/0x8c)
<4>[60264.704408] (0)[<c05181c8>] (cpu_up+0x0/0x8c) from [<c03013c8>] (hp_work_handler+0x3c/0x84)
<4>[60264.704419] (0) r5:c0ca21e0 r4:c0fd0bc0
<4>[60264.704441] (0)[<c030138c>] (hp_work_handler+0x0/0x84) from [<c00b52bc>] (process_one_work+0x12c/0x410)
<4>[60264.704458] (0)[<c00b5190>] (process_one_work+0x0/0x410) from [<c00b5a28>] (worker_thread+0x2d8/0x3bc)
<4>[60264.704476] (0)[<c00b5750>] (worker_thread+0x0/0x3bc) from [<c00bba20>] (kthread+0x90/0x98)
<4>[60264.704496] (0)[<c00bb990>] (kthread+0x0/0x98) from [<c00a3d34>] (do_exit+0x0/0x6ec)
<4>[60264.704507] (0) r7:00000013 r6:c00a3d34 r5:c00bb990 r4:dce01ea0
<4>[60264.704529] (0)Mem-info:
<4>[60264.704537] (0)Normal per-cpu:
<4>[60264.704547] (0)CPU    0: hi:  186, btch:  31 usd:  49
<4>[60264.704565] (0)active_anon:82425 inactive_anon:836 isolated_anon:0
<4>[60264.704570] (0) active_file:83 inactive_file:130 isolated_file:0
<4>[60264.704575] (0) unevictable:337 dirty:4 writeback:6 unstable:0
<4>[60264.704580] (0) free:11078 slab_reclaimable:602 slab_unreclaimable:3038
<4>[60264.704586] (0) mapped:15952 shmem:282 pagetables:2033 bounce:0
<4>[60264.704614] (0)Normal free:44312kB min:2808kB low:3508kB high:4212kB active_anon:329700kB inactive_anon:3344kB active_file:332kB inactive_file:520kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15240kB dirty:16kB writeback:24kB mapped:63808kB shmem:1128kB slab_reclaimable:2408kB slab_unreclaimable:12152kB kernel_stack:4904kB pagetables:8132kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:38807 all_unreclaimable? yes
<4>[60264.704643] (0)lowmem_reserve[]: 0 0 0
<4>[60264.704660] (0)Normal: 9884*4kB 597*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 44312kB
<4>[60264.704709] (0)795 total pagecache pages
<4>[60264.711840] (0)124416 pages of RAM
<4>[60264.711850] (0)11953 free pages
<4>[60264.711857] (0)3303 reserved pages
<4>[60264.711865] (0)3578 slab pages
<4>[60264.711872] (0)119737 pages shared
<4>[60264.711879] (0)0 pages swap cached
<5>[60264.711887] (0)[ pid ]   uid  tgid total_vm      rss cpu oom_adj oom_score_adj name
<5>[60264.711914] (0)[   63]     0    63       90       50   0     -16          -941 ueventd
<5>[60264.711935] (0)[   95]  1000    95      250       30   0     -16          -941 servicemanager
<5>[60264.711951] (0)[   96]     0    96     1229       97   0     -16          -941 vold
<5>[60264.711966] (0)[   97]  9996    97      319       42   0     -16          -941 ccci_fsd
<5>[60264.711981] (0)[   98]  1000    98      472       31   0     -16          -941 ccci_mdinit
<5>[60264.711997] (0)[   99]  1000    99      216       28   0     -16          -941 6620_launcher
<5>[60264.712012] (0)[  100]     0   100      498       43   0     -16          -941 debuggerd
<5>[60264.712028] (0)[  101]     0   101     1676       69   0     -16          -941 vivo_daemon
<5>[60264.712043] (0)[  102]  2000   102      573       48   0     -16          -941 mobile_log_d
<5>[60264.712059] (0)[  106]     0   106     3991      479   0     -16          -941 netd
<5>[60264.712074] (0)[  108]  1001   108     1103       59   0     -16          -941 netdiag
<5>[60264.712089] (0)[  110]  1000   110    12852     5347   0     -16          -941 surfaceflinger
<5>[60264.712105] (0)[  111]     0   111    67947     4992   0     -16          -941 zygote
<5>[60264.712120] (0)[  112]  1000   112      797       47   0     -16          -941 hald
<5>[60264.712135] (0)[  113]  1019   113     5215      431   0     -16          -941 drmserver
<5>[60264.712150] (0)[  114]     0   114    20987     1226   0     -16          -941 mediaserver
<5>[60264.712166] (0)[  115]  1000   115     2864      158   1     -16          -941 mdpserver
<5>[60264.712181] (0)[  116]  1000   116      300       82   0     -16          -941 mtkGD
<5>[60264.712196] (0)[  117]  1002   117      382       37   0     -16          -941 dbus-daemon
<5>[60264.712212] (0)[  119]     0   119      261       34   0     -16          -941 installd
<5>[60264.712227] (0)[  121]  1017   121      481       49   0     -16          -941 keystore
<5>[60264.712242] (0)[  122]  1021   122     3364       83   0     -16          -941 mtk_agpsd
<5>[60264.712257] (0)[  123]  1000   123      258       39   0     -16          -941 stp_dump3
<5>[60264.712272] (0)[  126]     0   126     3358      279   0     -16          -941 atcid
<5>[60264.712287] (0)[  127]  1000   127     1182       60   0     -16          -941 dm_agent_binder
<5>[60264.712303] (0)[  128]  1002   128     1103       84   0     -16          -941 mtkbt
<5>[60264.712318] (0)[  129]  1000   129     1841      143   0     -16          -941 mdpd
<5>[60264.712333] (0)[  132]  1000   132     1169       57   0     -16          -941 nvram_agent_bin
<5>[60264.712349] (0)[  139]  1008   139      770       36   0     -16          -941 orientationd
<5>[60264.712364] (0)[  142]  1008   142      264       34   0     -16          -941 geomagneticd
<5>[60264.712380] (0)[  143]  2000   143      661      413   0     -16          -941 mobile_log_d
<5>[60264.712395] (0)[  144]  2000   144      319       71   0     -16          -941 mobile_log_d
<5>[60264.712410] (0)[  145]  2000   145      322       74   0     -16          -941 mobile_log_d
<5>[60264.712426] (0)[  146]  2000   146      317       64   0     -16          -941 mobile_log_d
<5>[60264.712441] (0)[  147]  2000   147      317       47   0     -16          -941 mobile_log_d
<5>[60264.712458] (0)[  214]  1001   214     3340       65   0     -16          -941 gsm0710muxd
<5>[60264.712473] (0)[  215]  2000   215      358       44   0     -16          -941 mdlogger
<5>[60264.712488] (0)[  246]  1001   246     5596      125   0     -16          -941 rild
<5>[60264.712504] (0)[  266]  1000   266   103282    10029   0     -16          -941 system_server
<5>[60264.712519] (0)[  347]  1000   347    84890     8958   0     -12          -705 ndroid.systemui
<5>[60264.712535] (0)[  399] 10011   399    73786     5593   0       0             0 d.process.media
<5>[60264.712550] (0)[  414] 10044   414    72718     7491   0       2           117 qoo.ime.service
<5>[60264.712566] (0)[  440] 10056   440    70821     5071   0       1            58 du.map.location
<5>[60264.712582] (0)[  450]  1001   450    88488     9058   0     -12          -705 m.android.phone
<5>[60264.712598] (0)[  463] 10053   463    70279     5070   0     -12          -705 iatek.bluetooth
<5>[60264.712614] (0)[  474] 10028   474    70527     5237   0     -12          -705 retary.provider
<5>[60264.712630] (0)[  527] 10056   527    69992     5063   0       1            58 location:remote
<5>[60264.712645] (0)[  555] 10002   555    77615    10124   0       2           117 ndroid.contacts
<5>[60264.712661] (0)[  605] 10014   605    86458    11803   1     -12          -705 ndroid.bbkmusic
<5>[60264.712677] (0)[  648] 10002   648    76658     7349   0     -12          -705 d.process.acore
<5>[60264.712693] (0)[  777]     0   777     3388      299   0     -16          -941 bbk_em_svr
<5>[60264.712708] (0)[  873]  1001   873    70244     5421   0       2           117 iatek.mobilelog
<5>[60264.712736] (0)[ 5024]  1007  5024      212       30   0     -16          -941 logwrapper
<5>[60264.712752] (0)[ 5026]  1010  5026      654       98   0     -16          -941 wpa_supplicant
<5>[60264.712768] (0)[17418] 10111 17418   111713    44131   0       0             0 .plandotmob.pvz
<5>[60264.712787] (0)[19716]     0 19716     4922      261   0     -16          -941 atci_service
<5>[60264.712802] (0)[20039]  1000 20039    70146     5119   0       8           470 atek.MediatekDM
<5>[60264.712818] (0)[20048] 10097 20048    70615     5099   0       8           470 .andouya:remote
<5>[60264.712833] (0)[20141]  1000 20141    70326     5040   0       8           470 ek.atci.service
<5>[60264.712849] (0)[20181]  1000 20181    71155     5280   0       5           294 ndroid.settings
<5>[60264.712865] (0)[20199] 10086 20199    73418     5490   0       5           294 tencent.mm:push
<5>[60264.712880] (0)[20223] 10086 20223    74551     5565   0       5           294 com.tencent.mm
<5>[60264.712896] (0)[20247] 10120 20247    71267     5213   0       8           470 yu.ChunyuDoctor
<5>[60264.712912] (0)[20289] 10122 20289    70034     5010   0       9           529 shouliexiaoniao
<5>[60264.712928] (0)[20324]  1000 20324    12852     5347   0     -16          -941 SFWatchDog
<3>[60264.712941] (0)Out of memory: Kill process 20289 (shouliexiaoniao) score 570 or sacrifice child
<3>[60264.712957] (0)Killed process 20289 (shouliexiaoniao) total-vm:280136kB, anon-rss:19984kB, file-rss:56kB
<7>[60264.712989] (0)[19519:kworker/0:6] sig 9 to [20289:shouliexiaoniao]
<7>[60264.713131] (0)[20289:shouliexiaoniao] exit
<7>[60264.713179] (0)[20293:GC] exit
<7>[60264.713219] (0)[20295:Signal Catcher] exit
<7>[60264.713253] (0)[20299:Compiler] exit
<7>[60264.713287] (0)[20301:ReferenceQueueD] exit
<7>[60264.713320] (0)[20304:FinalizerDaemon] exit
<7>[60264.713351] (0)[20305:FinalizerWatchd] exit
<7>[60264.713385] (0)[20307:Binder Thread #] exit
<7>[60264.713422] (0)[20308:Binder Thread #] exit
<6>[60264.716754] (0)binder: release 20289:20289 transaction 1720643 out, still active




<7>[60282.878040] (0)[Sound] -DL_Handling 2underflow ReadIdx:0, WriteIdx:1800, DataRemained:1800 
<4>[60282.912850] (0)[Sound] +DL_Handling underflow ReadIdx:0 WriteIdx:1800, DataRemained:1800, HW_cons:1800 
<7>[60282.912869] (0)[Sound] -DL_Handling 2underflow ReadIdx:1800, WriteIdx:0, DataRemained:1800 
<4>[60282.947681] (0)[Sound] +DL_Handling underflow ReadIdx:1800 WriteIdx:0, DataRemained:1800, HW_cons:1800 
<7>[60282.947700] (0)[Sound] -DL_Handling 2underflow ReadIdx:0, WriteIdx:1800, DataRemained:1800 
<4>[60282.955262] (1)init invoked oom-killer: gfp_mask=0xd0, order=2, oom_adj=-16, oom_score_adj=-941
<4>[60282.955276] (1)Backtrace: 
<4>[60282.955307] (1)[<c0044774>] (dump_backtrace+0x0/0x10c) from [<c0519e28>] (dump_stack+0x18/0x1c)
<4>[60282.955319] (1) r7:00000002 r6:000000d0 r5:00000002 r4:dbd46000
<4>[60282.955351] (1)[<c0519e10>] (dump_stack+0x0/0x1c) from [<c00eb948>] (dump_header.clone.1+0x74/0x174)
<4>[60282.955369] (1)[<c00eb8d4>] (dump_header.clone.1+0x0/0x174) from [<c00ebab8>] (oom_kill_process.clone.0+0x70/0x214)
<4>[60282.955388] (1)[<c00eba48>] (oom_kill_process.clone.0+0x0/0x214) from [<c00ebe74>] (out_of_memory+0x218/0x2f4)
<4>[60282.955407] (1)[<c00ebc5c>] (out_of_memory+0x0/0x2f4) from [<c00efc38>] (__alloc_pages_nodemask+0x6e0/0x70c)
<4>[60282.955425] (1)[<c00ef558>] (__alloc_pages_nodemask+0x0/0x70c) from [<c00efcdc>] (__get_free_pages+0x18/0x30)
<4>[60282.955443] (1)[<c00efcc4>] (__get_free_pages+0x0/0x30) from [<c0048c50>] (pgd_alloc+0x1c/0xec)
<4>[60282.955462] (1)[<c0048c34>] (pgd_alloc+0x0/0xec) from [<c009da04>] (mm_init+0xc4/0x10c)
<4>[60282.955473] (1) r7:d1d04e00 r6:c0745500 r5:00000000 r4:d44fd1c0
<4>[60282.955500] (1)[<c009d940>] (mm_init+0x0/0x10c) from [<c009da94>] (mm_alloc+0x48/0x50)
<4>[60282.955510] (1) r7:d1d04e00 r6:d1d04e00 r5:00040984 r4:d44fd1c0
<4>[60282.955542] (1)[<c009da4c>] (mm_alloc+0x0/0x50) from [<c011e488>] (bprm_mm_init+0x18/0x194)
<4>[60282.955553] (1) r5:00040984 r4:d2992000
<4>[60282.955574] (1)[<c011e470>] (bprm_mm_init+0x0/0x194) from [<c011ea1c>] (do_execve+0xc8/0x258)
<4>[60282.955591] (1)[<c011e954>] (do_execve+0x0/0x258) from [<c0043fa4>] (sys_execve+0x3c/0x5c)
<4>[60282.955608] (1)[<c0043f68>] (sys_execve+0x0/0x5c) from [<c0040c00>] (ret_fast_syscall+0x0/0x30)
<4>[60282.955619] (1) r7:0000000b r6:beb4adc4 r5:0000000d r4:000408d8
<4>[60282.955641] (1)Mem-info:
<4>[60282.955649] (1)Normal per-cpu:
<4>[60282.955659] (1)CPU    0: hi:  186, btch:  31 usd:   0
<4>[60282.955669] (1)CPU    1: hi:  186, btch:  31 usd:   0
<4>[60282.955686] (1)active_anon:82038 inactive_anon:836 isolated_anon:0
<4>[60282.955691] (1) active_file:29 inactive_file:98 isolated_file:0
<4>[60282.955697] (1) unevictable:337 dirty:3 writeback:12 unstable:0
<4>[60282.955702] (1) free:11642 slab_reclaimable:606 slab_unreclaimable:3043
<4>[60282.955707] (1) mapped:15899 shmem:282 pagetables:1980 bounce:0
<4>[60282.955735] (1)Normal free:46568kB min:2808kB low:3508kB high:4212kB active_anon:328152kB inactive_anon:3344kB active_file:116kB inactive_file:392kB unevictable:1348kB isolated(anon):0kB isolated(file):0kB present:493776kB mlocked:15240kB dirty:12kB writeback:48kB mapped:63596kB shmem:1128kB slab_reclaimable:2424kB slab_unreclaimable:12172kB kernel_stack:4864kB pagetables:7920kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:170262 all_unreclaimable? yes
<4>[60282.955764] (1)lowmem_reserve[]: 0 0 0
<4>[60282.955781] (1)Normal: 10377*4kB 638*8kB 1*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 46628kB
<4>[60282.955829] (1)713 total pagecache pages
<4>[60282.963443] (1)124416 pages of RAM
<4>[60282.963453] (1)12478 free pages
<4>[60282.963459] (1)3303 reserved pages
<4>[60282.963467] (1)3589 slab pages
<4>[60282.963473] (1)114899 pages shared
<4>[60282.963480] (1)0 pages swap cached
<5>[60282.963488] (1)[ pid ]   uid  tgid total_vm      rss cpu oom_adj oom_score_adj name
<5>[60282.963514] (1)[   63]     0    63       90       50   1     -16          -941 ueventd
<5>[60282.963535] (1)[   95]  1000    95      250       30   1     -16          -941 servicemanager
<5>[60282.963550] (1)[   96]     0    96     1229       92   0     -16          -941 vold
<5>[60282.963565] (1)[   97]  9996    97      319       42   0     -16          -941 ccci_fsd
<5>[60282.963581] (1)[   98]  1000    98      472       31   0     -16          -941 ccci_mdinit
<5>[60282.963596] (1)[   99]  1000    99      216       28   0     -16          -941 6620_launcher
<5>[60282.963611] (1)[  100]     0   100      498       43   0     -16          -941 debuggerd
<5>[60282.963626] (1)[  101]     0   101     1676       66   0     -16          -941 vivo_daemon
<5>[60282.963642] (1)[  102]  2000   102      573       48   0     -16          -941 mobile_log_d
<5>[60282.963657] (1)[  106]     0   106     3991      474   0     -16          -941 netd
<5>[60282.963671] (1)[  108]  1001   108     1103       59   0     -16          -941 netdiag
<5>[60282.963686] (1)[  110]  1000   110    13108     5330   1     -16          -941 surfaceflinger
<5>[60282.963701] (1)[  111]     0   111    67947     4992   0     -16          -941 zygote
<5>[60282.963716] (1)[  112]  1000   112      797       47   0     -16          -941 hald
<5>[60282.963731] (1)[  113]  1019   113     5215      431   0     -16          -941 drmserver
<5>[60282.963746] (1)[  114]     0   114    20987     1187   1     -16          -941 mediaserver
<5>[60282.963761] (1)[  115]  1000   115     2864      158   1     -16          -941 mdpserver
<5>[60282.963776] (1)[  116]  1000   116      300       82   0     -16          -941 mtkGD
<5>[60282.963790] (1)[  117]  1002   117      382       37   0     -16          -941 dbus-daemon
<5>[60282.963805] (1)[  119]     0   119      261       34   0     -16          -941 installd
<5>[60282.963820] (1)[  121]  1017   121      481       49   0     -16          -941 keystore
<5>[60282.963835] (1)[  122]  1021   122     3364       83   0     -16          -941 mtk_agpsd
<5>[60282.963850] (1)[  123]  1000   123      258       39   0     -16          -941 stp_dump3
<5>[60282.963865] (1)[  126]     0   126     3358      279   0     -16          -941 atcid
<5>[60282.963879] (1)[  127]  1000   127     1182       60   0     -16          -941 dm_agent_binder
<5>[60282.963895] (1)[  128]  1002   128     1103       84   0     -16          -941 mtkbt
<5>[60282.963910] (1)[  129]  1000   129     1841      143   0     -16          -941 mdpd
<5>[60282.963925] (1)[  132]  1000   132     1169       57   0     -16          -941 nvram_agent_bin
<5>[60282.963940] (1)[  139]  1008   139      770       36   0     -16          -941 orientationd
<5>[60282.963955] (1)[  142]  1008   142      264       34   0     -16          -941 geomagneticd
<5>[60282.963970] (1)[  143]  2000   143      661      405   0     -16          -941 mobile_log_d
<5>[60282.963985] (1)[  144]  2000   144      319       63   1     -16          -941 mobile_log_d
<5>[60282.964000] (1)[  145]  2000   145      322       66   1     -16          -941 mobile_log_d
<5>[60282.964016] (1)[  146]  2000   146      317       61   1     -16          -941 mobile_log_d
<5>[60282.964031] (1)[  147]  2000   147      317       46   0     -16          -941 mobile_log_d
<5>[60282.964047] (1)[  214]  1001   214     3340       57   0     -16          -941 gsm0710muxd
<5>[60282.964061] (1)[  215]  2000   215      358       44   0     -16          -941 mdlogger
<5>[60282.964076] (1)[  246]  1001   246     5596      115   0     -16          -941 rild
<5>[60282.964091] (1)[  266]  1000   266   103282     9912   1     -16          -941 system_server
<5>[60282.964106] (1)[  347]  1000   347    84931     8937   0     -12          -705 ndroid.systemui
<5>[60282.964122] (1)[  399] 10011   399    73786     5593   0       0             0 d.process.media
<5>[60282.964137] (1)[  414] 10044   414    72718     7491   0       2           117 qoo.ime.service
<5>[60282.964153] (1)[  440] 10056   440    70821     5071   0       1            58 du.map.location
<5>[60282.964216] (1)[  450]  1001   450    88488     9042   0     -12          -705 m.android.phone
<5>[60282.964235] (1)[  463] 10053   463    70279     5070   0     -12          -705 iatek.bluetooth
<5>[60282.964259] (1)[  474] 10028   474    70527     5237   0     -12          -705 retary.provider
<5>[60282.964276] (1)[  527] 10056   527    69992     5063   1       1            58 location:remote
<5>[60282.964293] (1)[  555] 10002   555    77615    10124   0       2           117 ndroid.contacts
<5>[60282.964309] (1)[  605] 10014   605    86458    11803   1     -12          -705 ndroid.bbkmusic
<5>[60282.964326] (1)[  648] 10002   648    76658     7349   0     -12          -705 d.process.acore
<5>[60282.964341] (1)[  777]     0   777     3388      291   0     -16          -941 bbk_em_svr
<5>[60282.964356] (1)[  873]  1001   873    70244     5417   0       2           117 iatek.mobilelog
<5>[60282.964381] (1)[ 5024]  1007  5024      212       30   0     -16          -941 logwrapper
<5>[60282.964396] (1)[ 5026]  1010  5026      654       98   0     -16          -941 wpa_supplicant
<5>[60282.964412] (1)[17418] 10111 17418   111713    44098   0       0             0 .plandotmob.pvz
<5>[60282.964430] (1)[19716]     0 19716     4922      261   0     -16          -941 atci_service
<5>[60282.964445] (1)[20039]  1000 20039    70146     5119   0       8           470 atek.MediatekDM
<5>[60282.964460] (1)[20048] 10097 20048    70615     5099   0       8           470 .andouya:remote
<5>[60282.964476] (1)[20141]  1000 20141    70326     5040   0       8           470 ek.atci.service
<5>[60282.964491] (1)[20181]  1000 20181    71155     5259   0       5           294 ndroid.settings
<5>[60282.964507] (1)[20199] 10086 20199    73418     5490   0       5           294 tencent.mm:push
<5>[60282.964522] (1)[20223] 10086 20223    74551     5565   0       5           294 com.tencent.mm
<5>[60282.964537] (1)[20247] 10120 20247    71267     5221   0       5           294 yu.ChunyuDoctor
<5>[60282.964554] (1)[20331]     0 20331      182      120   1     -16          -941 init
<5>[60282.964568] (1)[20332]  1000 20332    13108     5330   0     -16          -941 SFWatchDog
<3>[60282.964581] (1)Out of memory: Kill process 20039 (atek.MediatekDM) score 512 or sacrifice child
<3>[60282.964597] (1)Killed process 20039 (atek.MediatekDM) total-vm:280584kB, anon-rss:20420kB, file-rss:56kB
<7>[60282.964620] (1)[20331:init] sig 9 to [20039:atek.MediatekDM]
<7>[60282.964750] (1)[20039:atek.MediatekDM] exit
<7>[60282.964894] (1)[20065:Binder Thread #] exit
<7>[60282.965048] (1)[20043:GC] exit
<7>[60282.965201] (1)[20046:Signal Catcher] exit
<7>[60282.965357] (1)[20050:Compiler] exit
<7>[60282.965517] (1)[20053:ReferenceQueueD] exit
<7>[60282.965672] (1)[20056:FinalizerDaemon] exit
<7>[60282.965826] (1)[20057:FinalizerWatchd] exit
<7>[60282.965985] (1)[20060:Binder Thread #] exit
發佈了54 篇原創文章 · 獲贊 43 · 訪問量 37萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章