From: Vegard Nossum <vegard.nossum@oracle.com>
To: Linux MM <linux-mm@kvack.org>
Cc: Vlastimil Babka <vbabka@suse.cz>,
Leon Yu <chianglungyu@gmail.com>,
Konstantin Khlebnikov <koct9i@gmail.com>
Subject: use-after-free in mprotect() on linus/master
Date: Sun, 24 Jul 2016 13:04:35 +0200 [thread overview]
Message-ID: <5794A0C3.9060007@oracle.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 3426 bytes --]
Hi all,
I've been running into this use-after-free in mprotect() with trinity on
latest linus/master. It's relatively easy to reproduce, it takes
anything from 1-6 hours and I've hit it some ~12 times in total (on
different VMs with no preceding errors/taints other than OOM stack traces).
The problem seems to be triggered when both calls to
anon_vma_chain_alloc() in anon_vma_clone() fail -- it jumps to
'enomem_failure' and backs up through vma_merge() to mprotect_fixup()
where it does the 'if (start != vma->vm_start)' and by this point 'vma'
has apparently been freed.
I'll attach what I think is the best example since everything (alloc +
free + use-after-free) seems to happen in sys_mprotect() in the same
process and it has a little bit of debugging info that I inserted in
anon_vma_clone(), although I've also seen the alloc + free +
use-after-free happen in 3 different processes, with alloc happening in
clone() and free happening in exit().
my printks in anon_vma_clone() (at 'enomem_failure'), just before the crash:
dst:
->vm_start=00007f77982d0000
->vm_end =00007f77983d0000
->vm_mm =ffff8800b8956900
->vm_flags=100173
VM_READ|VM_WRITE
VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC
VM_GROWSDOWN
VM_ACCOUNT
->vm_ops = (null)
->anon_vma=ffff8800b8668300
src:
->vm_start=00007f77983d0000
->vm_end =00007f77985d1000
->vm_mm =ffff8800b8956900
->vm_flags=100173
->vm_ops = (null)
->anon_vma=ffff8800b8668300
The stack trace where the use-after-free happens:
[<ffffffff81354413>] mprotect_fixup+0x523/0x5a0
- mm/mprotect.c:312 if (start != vma->vm_start) {
[<ffffffff81354827>] SyS_mprotect+0x397/0x790
- mm/mprotect.c:437 error = mprotect_fixup(vma, &prev, nstart, tmp,
newflags);
From KASAN (annotated with lines/line numbers):
INFO: Allocated in __split_vma.isra.34+0x161/0x730 age=753 cpu=3 pid=16769
kmem_cache_alloc+0x1af/0x1e0
__split_vma.isra.34+0x161/0x730
- mm/mmap.c:2341 new = kmem_cache_alloc(vm_area_cachep,
GFP_KERNEL);
split_vma+0x7f/0xc0
- mm/mmap.c:2400 return __split_vma(mm, vma, addr, new_below);
mprotect_fixup+0x3e8/0x5a0
- mm/mprotect.c:320 error = split_vma(mm, vma, end, 0);
SyS_mprotect+0x397/0x790
INFO: Freed in vma_adjust+0x8e6/0x1390 age=32 cpu=3 pid=16769
kmem_cache_free+0x19a/0x1b0
vma_adjust+0x8e6/0x1390
- mm/mmap.c:797 kmem_cache_free(vm_area_cachep, next);
vma_merge+0x7c7/0xc20
- mm/mmap.c:977 /* (cases 1, 6) */
mprotect_fixup+0x1b6/0x5a0
- mm/mprotect.c:305 *pprev = vma_merge(mm, *pprev, start, end,
newflags,
SyS_mprotect+0x397/0x790
So it *looks* to me like it all happens within one call to mprotect()
and that this is the very general flow:
SyS_mprotect()
- mprotect_fixup()
- split_vma()
- split_vma.isra.34()
- vma = kmem_cache_alloc() // succeeds
- vma_merge()
- vma_adjust()
- kmem_cache_free(vma)
- goto again; // ???
- anon_vma_clone()
- kmem_cache_alloc()
- return NULL
- kmem_cache_alloc()
- return NULL
- return -ENOMEM
- return -ENOMEM
- return NULL
- vma->vm_start // use-after-free
I'll try adding some more printk()s and also see if I can narrow it down
so reproducing is faster.
Vegard
[-- Attachment #2: 28.txt --]
[-- Type: text/plain, Size: 137367 bytes --]
+ capsh --user=nobody --caps= -- -c '/home/vegard/trinity/trinity -qq -l off -C4 -x unshare'
Trinity e405aa7 Dave Jones <davej@codemonkey.org.uk>
shm:0x7f779a3de000-0x7f77a6d5ada0 (4 pages)
[main] Marking syscall unshare (64bit:272 32bit:310) as to be disabled.
random: trinity urandom read with 69 bits of entropy available
Marking all syscalls as enabled.
[main] Disabling syscalls marked as disabled by command line options
[main] Marked 64-bit syscall unshare (272) as deactivated.
[main] Marked 32-bit syscall unshare (310) as deactivated.
[main] 32-bit syscalls: 379 enabled, 1 disabled. 64-bit syscalls: 328 enabled, 1 disabled.
[main] Using pid_max = 32768
Free memory: 3.29GB
Low on memory, disabling mmaping of 1GB pages
[main] There are 15 entries in the 0 list (@0xbe69d0).
[main] start: 0x7f779a3dc000 size:4KB name: anon(PROT_READ | PROT_WRITE)
[main] start: 0x7f779a3db000 size:4KB name: anon(PROT_READ)
[main] start: 0x7f779a3da000 size:4KB name: anon(PROT_WRITE)
[main] start: 0x7f779a278000 size:1MB name: anon(PROT_READ | PROT_WRITE)
[main] start: 0x7f77998d1000 size:1MB name: anon(PROT_READ)
[main] start: 0x7f77997d1000 size:1MB name: anon(PROT_WRITE)
[main] start: 0x7f77995d1000 size:2MB name: anon(PROT_READ | PROT_WRITE)
[main] start: 0x7f77993d1000 size:2MB name: anon(PROT_READ)
[main] start: 0x7f77991d1000 size:2MB name: anon(PROT_WRITE)
[main] start: 0x7f7798dd1000 size:4MB name: anon(PROT_READ | PROT_WRITE)
[main] start: 0x7f77989d1000 size:4MB name: anon(PROT_READ)
[main] start: 0x7f77985d1000 size:4MB name: anon(PROT_WRITE)
[main] start: 0x7f779a3d9000 size:4KB name: anon(PROT_READ | PROT_WRITE)
[main] start: 0x7f779a277000 size:4KB name: anon(PROT_READ)
[main] start: 0x7f779a276000 size:4KB name: anon(PROT_WRITE)
[main] Reserved/initialized 20 futexes.
[main] Added 17 filenames from /dev
[main] Added 30371 filenames from /proc
[main] Added 4348 filenames from /sys
[main] There are 8 entries in the 3 list (@0xdb1ca0).
[main] pipefd:291
[main] pipefd:292
[main] pipefd:293
[main] pipefd:294
[main] pipefd:295
[main] pipefd:296
[main] pipefd:297
[main] pipefd:298
irda_setsockopt: not allowed to set MAXSDUSIZE for this socket type!
irda_setsockopt: not allowed to set MAXSDUSIZE for this socket type!
irda_setsockopt: not allowed to set MAXSDUSIZE for this socket type!
irda_setsockopt: not allowed to set MAXSDUSIZE for this socket type!
sock: process `trinity-main' is using obsolete setsockopt SO_BSDCOMPAT
[main] There are 4 entries in the 2 list (@0xfe2720).
[main] start: 0x7f779a21c000 size:4KB name: trinity-testfile1
[main] start: 0x7f779a21b000 size:4KB name: trinity-testfile2
[main] start: 0x7f779a21a000 size:4KB name: trinity-testfile3
[main] start: 0x7f779a219000 size:4KB name: trinity-testfile4
[main] Enabled 13/13 fd providers. initialized:13.
mmap: trinity-c3 (1287) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.
VFS: Warning: trinity-c3 using old stat() call. Recompile your binary.
VFS: Warning: trinity-c3 using old stat() call. Recompile your binary.
VFS: Warning: trinity-c1 using old stat() call. Recompile your binary.
warning: process `trinity-c0' used the deprecated sysctl system call with
VFS: Warning: trinity-c3 using old stat() call. Recompile your binary.
socket: no more sockets
trinity-c3 invoked oom-killer: gfp_mask=0x0(), order=0, oom_score_adj=500
trinity-c3 cpuset=/ mems_allowed=0
CPU: 1 PID: 4257 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
00000000000001f4 ffff8800b8ab7bb8 ffffffff81971b01 ffff8800b8ab7de0
ffff8800b896b700 ffff8800b8ab7c38 ffffffff813cabd6 ffffffff83aba1a4
0000000000000206 ffffffff83aba1a0 ffff8800b8ab7bf0 ffffffff83295e4f
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff813cabd6>] dump_header+0x112/0x49e
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff81981590>] ? ___ratelimit+0x1f0/0x3b0
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff812cfd3a>] oom_kill_process+0x4ca/0xa30
[<ffffffff810fa4de>] ? has_ns_capability_noaudit+0x4e/0x70
[<ffffffff810fa512>] ? has_capability_noaudit+0x12/0x20
[<ffffffff812cec57>] ? oom_badness+0x267/0x3b0
[<ffffffff812d0c9c>] out_of_memory+0x91c/0xd70
[<ffffffff812d0380>] ? unregister_oom_notifier+0x20/0x20
[<ffffffff8130fab1>] ? vm_mmap_pgoff+0x141/0x180
[<ffffffff812d11ac>] pagefault_out_of_memory+0xbc/0x120
[<ffffffff812d10f0>] ? out_of_memory+0xd70/0xd70
[<ffffffff810c056a>] mm_fault_error+0xca/0x300
[<ffffffff8134bb5a>] ? find_vma+0xea/0x150
[<ffffffff810c0f0f>] __do_page_fault+0x76f/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
Mem-Info:
active_anon:6380 inactive_anon:23326 isolated_anon:0
active_file:466 inactive_file:44 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8754 slab_unreclaimable:3908
mapped:5472 shmem:28166 pagetables:86 bounce:0
free:821553 free_pcp:1162 free_cma:0
Node 0 DMA free:14904kB min:308kB low:384kB high:460kB active_anon:144kB inactive_anon:532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:144kB shmem:664kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2865120kB min:58576kB low:73220kB high:87864kB active_anon:18320kB inactive_anon:81448kB active_file:1452kB inactive_file:164kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:16788kB shmem:95892kB slab_reclaimable:29872kB slab_unreclaimable:12496kB kernel_stack:1728kB pagetables:324kB unstable:0kB bounce:0kB free_pcp:2140kB local_pcp:172kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:406188kB min:8692kB low:10864kB high:13036kB active_anon:7056kB inactive_anon:11324kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4956kB shmem:16108kB slab_reclaimable:4928kB slab_unreclaimable:3088kB kernel_stack:1184kB pagetables:16kB unstable:0kB bounce:0kB free_pcp:2508kB local_pcp:688kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 1*8kB (E) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 3*1024kB (UME) 1*2048kB (E) 2*4096kB (M) = 14904kB
Node 0 DMA32: 82*4kB (UM) 60*8kB (UM) 24*16kB (UME) 30*32kB (UM) 8*64kB (UME) 5*128kB (UM) 5*256kB (UME) 3*512kB (UE) 4*1024kB (UM) 4*2048kB (UME) 695*4096kB (M) = 2865128kB
Node 0 Normal: 1*4kB (M) 1*8kB (M) 2*16kB (UM) 2*32kB (U) 3*64kB (UME) 3*128kB (UME) 0*256kB 0*512kB 2*1024kB (UE) 3*2048kB (UME) 97*4096kB (M) = 406188kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
28676 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[ pid ] uid tgid total_vm rss nr_ptes nr_pmds swapents oom_score_adj name
[ 1283] 65534 1283 8848 1546 17 4 0 0 trinity-main
[ 3179] 65534 3179 8907 6468 26 4 0 500 trinity-c2
[ 3289] 65534 3289 8848 1503 16 4 0 500 trinity-c1
[ 3570] 65534 3570 8848 1529 18 4 0 500 trinity-c0
[ 4257] 65534 4257 9905 1542 18 4 0 500 trinity-c3
Out of memory: Kill process 3179 (trinity-c2) score 507 or sacrifice child
Killed process 3179 (trinity-c2) total-vm:35628kB, anon-rss:4780kB, file-rss:1196kB, shmem-rss:19896kB
trinity-c3 invoked oom-killer: gfp_mask=0x0(), order=0, oom_score_adj=500
trinity-c3 cpuset=/ mems_allowed=0
CPU: 1 PID: 4257 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
00000000000001f4 ffff8800b8ab7bb8 ffffffff81971b01 ffff8800b8ab7de0
ffff8800b896ee00 ffff8800b8ab7c38 ffffffff813cabd6 ffffffff83aba1a4
0000000000000206 ffffffff83aba1a0 ffff8800b8ab7bf0 ffffffff83295e4f
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff813cabd6>] dump_header+0x112/0x49e
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff81981590>] ? ___ratelimit+0x1f0/0x3b0
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff812cfd3a>] oom_kill_process+0x4ca/0xa30
[<ffffffff810fa4de>] ? has_ns_capability_noaudit+0x4e/0x70
[<ffffffff810fa512>] ? has_capability_noaudit+0x12/0x20
[<ffffffff812cec57>] ? oom_badness+0x267/0x3b0
[<ffffffff812d0c9c>] out_of_memory+0x91c/0xd70
[<ffffffff812d0380>] ? unregister_oom_notifier+0x20/0x20
[<ffffffff812d11ac>] pagefault_out_of_memory+0xbc/0x120
[<ffffffff812d10f0>] ? out_of_memory+0xd70/0xd70
[<ffffffff810c056a>] mm_fault_error+0xca/0x300
[<ffffffff8134ba8a>] ? find_vma+0x1a/0x150
[<ffffffff810c0f0f>] __do_page_fault+0x76f/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
Mem-Info:
active_anon:6380 inactive_anon:23326 isolated_anon:0
active_file:466 inactive_file:44 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8754 slab_unreclaimable:3908
mapped:5472 shmem:28166 pagetables:86 bounce:0
free:821553 free_pcp:1163 free_cma:0
Node 0 DMA free:14904kB min:308kB low:384kB high:460kB active_anon:144kB inactive_anon:532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:144kB shmem:664kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2865120kB min:58576kB low:73220kB high:87864kB active_anon:18320kB inactive_anon:81448kB active_file:1452kB inactive_file:164kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:16788kB shmem:95892kB slab_reclaimable:29872kB slab_unreclaimable:12496kB kernel_stack:1728kB pagetables:324kB unstable:0kB bounce:0kB free_pcp:2144kB local_pcp:172kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:406188kB min:8692kB low:10864kB high:13036kB active_anon:7056kB inactive_anon:11324kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4956kB shmem:16108kB slab_reclaimable:4928kB slab_unreclaimable:3088kB kernel_stack:1184kB pagetables:16kB unstable:0kB bounce:0kB free_pcp:2508kB local_pcp:688kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 1*8kB (E) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 3*1024kB (UME) 1*2048kB (E) 2*4096kB (M) = 14904kB
Node 0 DMA32: 82*4kB (UM) 60*8kB (UM) 24*16kB (UME) 30*32kB (UM) 8*64kB (UME) 5*128kB (UM) 5*256kB (UME) 3*512kB (UE) 4*1024kB (UM) 4*2048kB (UME) 695*4096kB (M) = 2865128kB
Node 0 Normal: 1*4kB (M) 1*8kB (M) 2*16kB (UM) 2*32kB (U) 3*64kB (UME) 3*128kB (UME) 0*256kB 0*512kB 2*1024kB (UE) 3*2048kB (UME) 97*4096kB (M) = 406188kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
28676 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[ pid ] uid tgid total_vm rss nr_ptes nr_pmds swapents oom_score_adj name
[ 1283] 65534 1283 8848 1546 17 4 0 0 trinity-main
[ 3289] 65534 3289 8848 1503 16 4 0 500 trinity-c1
[ 3570] 65534 3570 8848 1529 18 4 0 500 trinity-c0
[ 4257] 65534 4257 9905 1542 18 4 0 500 trinity-c3
Out of memory: Kill process 4257 (trinity-c3) score 501 or sacrifice child
Killed process 4257 (trinity-c3) total-vm:39620kB, anon-rss:4628kB, file-rss:1180kB, shmem-rss:360kB
oom_reaper: reaped process 4257 (trinity-c3), now anon-rss:0kB, file-rss:0kB, shmem-rss:360kB
socket: no more sockets
anon_vma_clone: 0000000001010000-000000000103b000 ffff8800b8705f00 100073 (null) ffff8800b8a23e00 | 0000000000ff6000-000000000103b000 ffff8800b8705f00 100073 (null) ffff8800b8a23e00
socket: no more sockets
socket: no more sockets
socket: no more sockets
vmalloc: allocation failure: 8 bytes
trinity-c2: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 2 PID: 5331 Comm: trinity-c2 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8acfb30 ffffffff81971b01 1ffff10017159f6a
ffffffff8347fc80 ffff8800b8acfc48 ffffffff812daf9f ffff8800b896c4c0
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8143f7c8>] setxattr+0x1c8/0x1f0
[<ffffffff8143f600>] ? vfs_setxattr+0xd0/0xd0
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff811e0796>] ? do_setitimer+0x336/0x540
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff814308b6>] ? __mnt_want_write+0x166/0x250
[<ffffffff81430bbe>] ? __mnt_want_write_file+0x6e/0x90
[<ffffffff814409c3>] SyS_fsetxattr+0x103/0x160
[<ffffffff814408c0>] ? SyS_lsetxattr+0x10/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6768 inactive_anon:62120 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8890 slab_unreclaimable:3922
mapped:5819 shmem:67317 pagetables:129 bounce:0
free:782409 free_pcp:850 free_cma:0
Node 0 DMA free:13888kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1540kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:196kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2731376kB min:58576kB low:73220kB high:87864kB active_anon:19372kB inactive_anon:213912kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17556kB shmem:229536kB slab_reclaimable:30336kB slab_unreclaimable:12552kB kernel_stack:1824kB pagetables:384kB unstable:0kB bounce:0kB free_pcp:1712kB local_pcp:128kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384508kB min:8692kB low:10864kB high:13036kB active_anon:7532kB inactive_anon:33028kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:5524kB shmem:38060kB slab_reclaimable:5008kB slab_unreclaimable:3080kB kernel_stack:1216kB pagetables:80kB unstable:0kB bounce:0kB free_pcp:1808kB local_pcp:184kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13888kB
Node 0 DMA32: 55*4kB (UM) 49*8kB (UME) 31*16kB (UME) 34*32kB (UME) 9*64kB (UME) 3*128kB (UM) 6*256kB (UME) 2*512kB (U) 2*1024kB (U) 2*2048kB (UE) 664*4096kB (M) = 2731604kB
Node 0 Normal: 65*4kB (UM) 47*8kB (UM) 10*16kB (UME) 3*32kB (ME) 4*64kB (UME) 1*128kB (M) 1*256kB (M) 0*512kB 2*1024kB (UE) 2*2048kB (UE) 92*4096kB (M) = 384508kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67826 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
socket: no more sockets
vmalloc: allocation failure: 3676 bytes
trinity-c3: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 0 PID: 5704 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b87e7b50 ffffffff81971b01 1ffff100170fcf6e
ffffffff8347fc80 ffff8800b87e7c68 ffffffff812daf9f ffff8800b896ee00
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440009>] ? getxattr+0x219/0x240
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440009>] ? getxattr+0x219/0x240
[<ffffffff81440009>] getxattr+0x219/0x240
[<ffffffff8143fdf0>] ? vfs_getxattr+0x140/0x140
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff83295e1c>] ? _raw_spin_unlock_irq+0x1c/0x30
[<ffffffff811e0796>] ? do_setitimer+0x336/0x540
[<ffffffff811db8c0>] ? run_local_timers+0x20/0x20
[<ffffffff81002600>] ? enter_from_user_mode+0x50/0x50
[<ffffffff811e09a0>] ? do_setitimer+0x540/0x540
[<ffffffff81440b11>] SyS_fgetxattr+0xc1/0x130
[<ffffffff81440a50>] ? SyS_lgetxattr+0x10/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6870 inactive_anon:61997 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8890 slab_unreclaimable:3940
mapped:5897 shmem:67337 pagetables:114 bounce:0
free:782315 free_pcp:939 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:196kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2730684kB min:58576kB low:73220kB high:87864kB active_anon:20004kB inactive_anon:213476kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17800kB shmem:229536kB slab_reclaimable:30336kB slab_unreclaimable:12616kB kernel_stack:2080kB pagetables:420kB unstable:0kB bounce:0kB free_pcp:1804kB local_pcp:216kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384540kB min:8692kB low:10864kB high:13036kB active_anon:7344kB inactive_anon:32980kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:5592kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3080kB kernel_stack:1184kB pagetables:32kB unstable:0kB bounce:0kB free_pcp:2124kB local_pcp:456kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 24*4kB (UM) 30*8kB (UME) 32*16kB (UME) 28*32kB (UME) 10*64kB (UE) 3*128kB (UM) 5*256kB (UE) 2*512kB (U) 2*1024kB (U) 2*2048kB (UE) 664*4096kB (M) = 2730960kB
Node 0 Normal: 45*4kB (UM) 19*8kB (UM) 21*16kB (UME) 8*32kB (UME) 4*64kB (UE) 1*128kB (M) 1*256kB (M) 0*512kB 2*1024kB (UE) 2*2048kB (UE) 92*4096kB (M) = 384540kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 83 bytes
trinity-c3: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 0 PID: 5704 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b87e7ca0 ffffffff81971b01 1ffff100170fcf98
ffffffff8347fc80 ffff8800b87e7db8 ffffffff812daf9f ffff8800b896ee00
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff81440320>] listxattr+0x100/0x120
[<ffffffff81440c55>] SyS_flistxattr+0xb5/0x110
[<ffffffff81440ba0>] ? SyS_llistxattr+0x10/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6863 inactive_anon:61997 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8890 slab_unreclaimable:3920
mapped:5897 shmem:67337 pagetables:94 bounce:0
free:782356 free_pcp:975 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:196kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2730640kB min:58576kB low:73220kB high:87864kB active_anon:19952kB inactive_anon:213476kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17800kB shmem:229536kB slab_reclaimable:30336kB slab_unreclaimable:12560kB kernel_stack:1760kB pagetables:332kB unstable:0kB bounce:0kB free_pcp:2148kB local_pcp:156kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384888kB min:8692kB low:10864kB high:13036kB active_anon:7348kB inactive_anon:32980kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:5592kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3072kB kernel_stack:1216kB pagetables:40kB unstable:0kB bounce:0kB free_pcp:1752kB local_pcp:144kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 18*4kB (UM) 15*8kB (UME) 15*16kB (UME) 33*32kB (UME) 12*64kB (UME) 2*128kB (U) 5*256kB (UE) 2*512kB (U) 2*1024kB (U) 2*2048kB (UE) 664*4096kB (M) = 2730704kB
Node 0 Normal: 76*4kB (UM) 34*8kB (UM) 27*16kB (UME) 9*32kB (UME) 4*64kB (UE) 1*128kB (M) 1*256kB (M) 0*512kB 2*1024kB (UE) 2*2048kB (UE) 92*4096kB (M) = 384912kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 3265 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 3 PID: 6523 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8ab7c20 ffffffff81971b01 1ffff10017156f88
ffffffff8347fc80 ffff8800b8ab7d38 ffffffff812daf9f ffff8800b896e040
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff81440320>] listxattr+0x100/0x120
[<ffffffff814403e5>] path_listxattr+0xa5/0x100
[<ffffffff81440340>] ? listxattr+0x120/0x120
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81440b80>] ? SyS_fgetxattr+0x130/0x130
[<ffffffff81440b8e>] SyS_listxattr+0xe/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6895 inactive_anon:61997 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8892 slab_unreclaimable:3942
mapped:5237 shmem:67337 pagetables:93 bounce:0
free:782192 free_pcp:1109 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:196kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2730512kB min:58576kB low:73220kB high:87864kB active_anon:20012kB inactive_anon:213476kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:15768kB shmem:229536kB slab_reclaimable:30344kB slab_unreclaimable:12584kB kernel_stack:1792kB pagetables:372kB unstable:0kB bounce:0kB free_pcp:2208kB local_pcp:92kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384360kB min:8692kB low:10864kB high:13036kB active_anon:7416kB inactive_anon:32980kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4984kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3136kB kernel_stack:1184kB pagetables:0kB unstable:0kB bounce:0kB free_pcp:2228kB local_pcp:204kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 77*4kB (UM) 25*8kB (UME) 8*16kB (UME) 30*32kB (UME) 14*64kB (UME) 3*128kB (UM) 6*256kB (UME) 3*512kB (UM) 3*1024kB (UM) 3*2048kB (UME) 663*4096kB (M) = 2730812kB
Node 0 Normal: 20*4kB (UM) 44*8kB (UM) 19*16kB (UME) 10*32kB (UME) 6*64kB (UME) 2*128kB (M) 1*256kB (M) 1*512kB (M) 3*1024kB (UME) 3*2048kB (UME) 91*4096kB (M) = 384416kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 1 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 3 PID: 6523 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8ab7ab0 ffffffff81971b01 1ffff10017156f5a
ffffffff8347fc80 ffff8800b8ab7bc8 ffffffff812daf9f ffff8800b896e040
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8143f7c8>] setxattr+0x1c8/0x1f0
[<ffffffff8143f600>] ? vfs_setxattr+0xd0/0xd0
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff814308b6>] ? __mnt_want_write+0x166/0x250
[<ffffffff8143f901>] path_setxattr+0x111/0x140
[<ffffffff8143f7f0>] ? setxattr+0x1f0/0x1f0
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81440890>] ? path_removexattr+0x110/0x110
[<ffffffff8144089f>] SyS_setxattr+0xf/0x20
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6889 inactive_anon:61997 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8892 slab_unreclaimable:3928
mapped:5237 shmem:67337 pagetables:116 bounce:0
free:782273 free_pcp:1064 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:196kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2730656kB min:58576kB low:73220kB high:87864kB active_anon:20036kB inactive_anon:213476kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:15768kB shmem:229536kB slab_reclaimable:30344kB slab_unreclaimable:12584kB kernel_stack:1760kB pagetables:432kB unstable:0kB bounce:0kB free_pcp:2156kB local_pcp:140kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384540kB min:8692kB low:10864kB high:13036kB active_anon:7368kB inactive_anon:32980kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4984kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3080kB kernel_stack:1184kB pagetables:28kB unstable:0kB bounce:0kB free_pcp:2100kB local_pcp:108kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 48*4kB (UM) 18*8kB (UME) 9*16kB (UME) 31*32kB (UME) 14*64kB (UME) 3*128kB (UM) 6*256kB (UME) 3*512kB (UM) 3*1024kB (UM) 3*2048kB (UME) 663*4096kB (M) = 2730688kB
Node 0 Normal: 25*4kB (UM) 33*8kB (UM) 13*16kB (UME) 11*32kB (UME) 6*64kB (UME) 2*128kB (M) 2*256kB (M) 1*512kB (M) 3*1024kB (UME) 3*2048kB (UME) 91*4096kB (M) = 384540kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
VFS: Warning: trinity-c0 using old stat() call. Recompile your binary.
vmalloc: allocation failure: 8 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 3 PID: 6523 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8ab7ab0 ffffffff81971b01 1ffff10017156f5a
ffffffff8347fc80 ffff8800b8ab7bc8 ffffffff812daf9f ffff8800b896e040
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8143f7c8>] setxattr+0x1c8/0x1f0
[<ffffffff8143f600>] ? vfs_setxattr+0xd0/0xd0
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff814308b6>] ? __mnt_want_write+0x166/0x250
[<ffffffff8143f901>] path_setxattr+0x111/0x140
[<ffffffff8143f7f0>] ? setxattr+0x1f0/0x1f0
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff814408b0>] ? SyS_setxattr+0x20/0x20
[<ffffffff814408bc>] SyS_lsetxattr+0xc/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6889 inactive_anon:61997 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8894 slab_unreclaimable:3928
mapped:5237 shmem:67337 pagetables:116 bounce:0
free:782279 free_pcp:1070 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:196kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2730680kB min:58576kB low:73220kB high:87864kB active_anon:20036kB inactive_anon:213476kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:15768kB shmem:229536kB slab_reclaimable:30352kB slab_unreclaimable:12584kB kernel_stack:1728kB pagetables:432kB unstable:0kB bounce:0kB free_pcp:2176kB local_pcp:76kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384540kB min:8692kB low:10864kB high:13036kB active_anon:7368kB inactive_anon:32980kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4984kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3080kB kernel_stack:1184kB pagetables:28kB unstable:0kB bounce:0kB free_pcp:2104kB local_pcp:108kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 42*4kB (UM) 28*8kB (UM) 7*16kB (UME) 30*32kB (UME) 14*64kB (UME) 3*128kB (UM) 6*256kB (UME) 3*512kB (UM) 3*1024kB (UM) 3*2048kB (UME) 663*4096kB (M) = 2730680kB
Node 0 Normal: 25*4kB (UM) 33*8kB (UM) 13*16kB (UME) 11*32kB (UME) 6*64kB (UME) 2*128kB (M) 2*256kB (M) 1*512kB (M) 3*1024kB (UME) 3*2048kB (UME) 91*4096kB (M) = 384540kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 1 bytes
trinity-c1: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 2 PID: 6712 Comm: trinity-c1 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8a2fad0 ffffffff81971b01 1ffff10017145f5e
ffffffff8347fc80 ffff8800b8a2fbe8 ffffffff812daf9f ffff8800b896a940
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440009>] ? getxattr+0x219/0x240
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440009>] ? getxattr+0x219/0x240
[<ffffffff81440009>] getxattr+0x219/0x240
[<ffffffff8143fdf0>] ? vfs_getxattr+0x140/0x140
[<ffffffff8139efa4>] ? kasan_check_write+0x14/0x20
[<ffffffff81a112f7>] ? strncpy_from_user+0x77/0x270
[<ffffffff8139f2c2>] ? kasan_slab_alloc+0x12/0x20
[<ffffffff8139bc1a>] ? kmem_cache_alloc+0xda/0x1e0
[<ffffffff813f3e0d>] ? getname_flags+0xfd/0x520
[<ffffffff814400e4>] path_getxattr+0xb4/0x110
[<ffffffff81440030>] ? getxattr+0x240/0x240
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81440a20>] ? SyS_fsetxattr+0x160/0x160
[<ffffffff81440a2f>] SyS_getxattr+0xf/0x20
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6915 inactive_anon:61997 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8894 slab_unreclaimable:3932
mapped:5238 shmem:67337 pagetables:122 bounce:0
free:782468 free_pcp:813 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:196kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2731080kB min:58576kB low:73220kB high:87864kB active_anon:20116kB inactive_anon:213476kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:15772kB shmem:229536kB slab_reclaimable:30352kB slab_unreclaimable:12584kB kernel_stack:1824kB pagetables:456kB unstable:0kB bounce:0kB free_pcp:1544kB local_pcp:160kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384896kB min:8692kB low:10864kB high:13036kB active_anon:7392kB inactive_anon:32980kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4984kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3096kB kernel_stack:1184kB pagetables:28kB unstable:0kB bounce:0kB free_pcp:1708kB local_pcp:148kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 78*4kB (UM) 38*8kB (UM) 38*16kB (UME) 25*32kB (UME) 13*64kB (UME) 3*128kB (UM) 6*256kB (UME) 3*512kB (UM) 3*1024kB (UM) 3*2048kB (UME) 663*4096kB (M) = 2731176kB
Node 0 Normal: 68*4kB (UM) 30*8kB (UM) 26*16kB (UME) 11*32kB (UME) 6*64kB (UME) 2*128kB (M) 2*256kB (M) 1*512kB (M) 3*1024kB (UME) 3*2048kB (UME) 91*4096kB (M) = 384896kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 8 bytes
trinity-c3: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 1 PID: 7451 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8af7c20 ffffffff81971b01 1ffff1001715ef88
ffffffff8347fc80 ffff8800b8af7d38 ffffffff812daf9f ffff8800b896d280
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff81440320>] listxattr+0x100/0x120
[<ffffffff814403e5>] path_listxattr+0xa5/0x100
[<ffffffff81440340>] ? listxattr+0x120/0x120
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81440b90>] ? SyS_listxattr+0x10/0x10
[<ffffffff81440b9b>] SyS_llistxattr+0xb/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6975 inactive_anon:61917 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8896 slab_unreclaimable:3938
mapped:880 shmem:67337 pagetables:116 bounce:0
free:782367 free_pcp:924 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:60kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2730940kB min:58576kB low:73220kB high:87864kB active_anon:20328kB inactive_anon:213176kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:2700kB shmem:229536kB slab_reclaimable:30360kB slab_unreclaimable:12592kB kernel_stack:1824kB pagetables:440kB unstable:0kB bounce:0kB free_pcp:1720kB local_pcp:688kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384524kB min:8692kB low:10864kB high:13036kB active_anon:7452kB inactive_anon:32960kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:760kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3096kB kernel_stack:1184kB pagetables:12kB unstable:0kB bounce:0kB free_pcp:2056kB local_pcp:676kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 37*4kB (UM) 93*8kB (UME) 22*16kB (UM) 25*32kB (UME) 14*64kB (UME) 5*128kB (UM) 6*256kB (UME) 2*512kB (U) 3*1024kB (UM) 3*2048kB (UME) 663*4096kB (M) = 2731004kB
Node 0 Normal: 49*4kB (UM) 45*8kB (U) 32*16kB (UME) 9*32kB (UME) 5*64kB (UE) 1*128kB (M) 1*256kB (M) 1*512kB (M) 3*1024kB (UME) 3*2048kB (UME) 91*4096kB (M) = 384524kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 8 bytes
trinity-c3: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 2 PID: 7451 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8af7ad0 ffffffff81971b01 1ffff1001715ef5e
ffffffff8347fc80 ffff8800b8af7be8 ffffffff812daf9f ffff8800b896d280
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440009>] ? getxattr+0x219/0x240
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440009>] ? getxattr+0x219/0x240
[<ffffffff81440009>] getxattr+0x219/0x240
[<ffffffff8143fdf0>] ? vfs_getxattr+0x140/0x140
[<ffffffff8139efa4>] ? kasan_check_write+0x14/0x20
[<ffffffff81a112f7>] ? strncpy_from_user+0x77/0x270
[<ffffffff8139f2c2>] ? kasan_slab_alloc+0x12/0x20
[<ffffffff8139bc1a>] ? kmem_cache_alloc+0xda/0x1e0
[<ffffffff813f3e0d>] ? getname_flags+0xfd/0x520
[<ffffffff814400e4>] path_getxattr+0xb4/0x110
[<ffffffff81440030>] ? getxattr+0x240/0x240
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81440a40>] ? SyS_getxattr+0x20/0x20
[<ffffffff81440a4c>] SyS_lgetxattr+0xc/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:6941 inactive_anon:61917 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8896 slab_unreclaimable:3942
mapped:715 shmem:67337 pagetables:122 bounce:0
free:782316 free_pcp:1002 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:60kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2730348kB min:58576kB low:73220kB high:87864kB active_anon:20416kB inactive_anon:213176kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:1968kB shmem:229536kB slab_reclaimable:30360kB slab_unreclaimable:12656kB kernel_stack:1856kB pagetables:488kB unstable:0kB bounce:0kB free_pcp:2028kB local_pcp:676kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384524kB min:8692kB low:10864kB high:13036kB active_anon:7452kB inactive_anon:32960kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:760kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3096kB kernel_stack:1184kB pagetables:12kB unstable:0kB bounce:0kB free_pcp:2056kB local_pcp:692kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 60*4kB (UM) 38*8kB (UME) 29*16kB (U) 20*32kB (UE) 14*64kB (UME) 5*128kB (UM) 6*256kB (UME) 2*512kB (U) 3*1024kB (UM) 3*2048kB (UME) 663*4096kB (M) = 2730608kB
Node 0 Normal: 45*4kB (UM) 29*8kB (UM) 27*16kB (UME) 12*32kB (UME) 7*64kB (UME) 1*128kB (M) 1*256kB (M) 1*512kB (M) 3*1024kB (UME) 3*2048kB (UME) 91*4096kB (M) = 384524kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 4096 bytes
trinity-c1: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 1 PID: 8023 Comm: trinity-c1 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8b17c98 ffffffff81971b01 1ffff10017162f97
ffffffff8347fc80 ffff8800b8b17db0 ffffffff812daf9f ffff8800bae08dc0
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff81440320>] listxattr+0x100/0x120
[<ffffffff81440c55>] SyS_flistxattr+0xb5/0x110
[<ffffffff81440ba0>] ? SyS_llistxattr+0x10/0x10
[<ffffffff8100378b>] do_int80_syscall_32+0x1cb/0x450
[<ffffffff81003477>] ? do_syscall_64+0x2c7/0x410
[<ffffffff83298153>] entry_INT80_compat+0x33/0x40
Mem-Info:
active_anon:8323 inactive_anon:60624 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8894 slab_unreclaimable:3970
mapped:1990 shmem:67337 pagetables:137 bounce:0
free:782482 free_pcp:621 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:152kB inactive_anon:1532kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:60kB shmem:1672kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2731020kB min:58576kB low:73220kB high:87864kB active_anon:25480kB inactive_anon:208004kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:6068kB shmem:229536kB slab_reclaimable:30352kB slab_unreclaimable:12728kB kernel_stack:2080kB pagetables:448kB unstable:0kB bounce:0kB free_pcp:1236kB local_pcp:172kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:384732kB min:8692kB low:10864kB high:13036kB active_anon:7636kB inactive_anon:32960kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:1836kB shmem:38140kB slab_reclaimable:5008kB slab_unreclaimable:3104kB kernel_stack:1216kB pagetables:96kB unstable:0kB bounce:0kB free_pcp:1508kB local_pcp:380kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 2*8kB (ME) 1*16kB (U) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 24*4kB (UM) 87*8kB (UME) 31*16kB (UM) 28*32kB (UME) 14*64kB (UME) 5*128kB (UM) 6*256kB (UME) 2*512kB (U) 3*1024kB (UM) 3*2048kB (UME) 663*4096kB (M) = 2731144kB
Node 0 Normal: 89*4kB (UM) 43*8kB (UM) 26*16kB (UME) 10*32kB (UE) 7*64kB (UME) 1*128kB (M) 1*256kB (M) 1*512kB (M) 3*1024kB (UME) 3*2048kB (UME) 91*4096kB (M) = 384732kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
67846 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
socket: no more sockets
socket: no more sockets
[main] 10047 iterations. [F:7595 S:2555 HI:559]
anon_vma_clone: 00007f779a216000-00007f779a218000 ffff8800baa9bc00 100073 (null) ffff8800b8b4fb00 | 00007f779a208000-00007f779a218000 ffff8800baa9bc00 100073 (null) ffff8800b8b4fb00
anon_vma_clone: 00007f779a214000-00007f779a216000 ffff8800baa9bc00 100073 (null) ffff8800b8b4fb00 | 00007f779a214000-00007f779a218000 ffff8800baa9bc00 100073 (null) ffff8800b8b4fb00
vmalloc: allocation failure: 1 bytes
trinity-c1: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 2 PID: 12782 Comm: trinity-c1 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8b47c18 ffffffff81971b01 1ffff10017168f87
ffffffff8347fc80 ffff8800b8b47d30 ffffffff812daf9f ffff8800b896d280
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff81440320>] listxattr+0x100/0x120
[<ffffffff814403e5>] path_listxattr+0xa5/0x100
[<ffffffff81440340>] ? listxattr+0x120/0x120
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81440b80>] ? SyS_fgetxattr+0x130/0x130
[<ffffffff81440b8e>] SyS_listxattr+0xe/0x10
[<ffffffff8100378b>] do_int80_syscall_32+0x1cb/0x450
[<ffffffff81003477>] ? do_syscall_64+0x2c7/0x410
[<ffffffff83298153>] entry_INT80_compat+0x33/0x40
Mem-Info:
active_anon:8347 inactive_anon:19891 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8658 slab_unreclaimable:4026
mapped:3662 shmem:26584 pagetables:155 bounce:0
free:823054 free_pcp:1177 free_cma:0
Node 0 DMA free:15012kB min:308kB low:384kB high:460kB active_anon:148kB inactive_anon:420kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:128kB shmem:580kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2871188kB min:58576kB low:73220kB high:87864kB active_anon:25548kB inactive_anon:68832kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:11820kB shmem:90228kB slab_reclaimable:29472kB slab_unreclaimable:12848kB kernel_stack:1696kB pagetables:472kB unstable:0kB bounce:0kB free_pcp:1924kB local_pcp:96kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:406248kB min:8692kB low:10864kB high:13036kB active_anon:7732kB inactive_anon:10312kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:2700kB shmem:15528kB slab_reclaimable:4944kB slab_unreclaimable:3176kB kernel_stack:1088kB pagetables:80kB unstable:0kB bounce:0kB free_pcp:2684kB local_pcp:740kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 4*4kB (M) 3*8kB (ME) 4*16kB (UM) 2*32kB (UE) 2*64kB (UM) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 3*1024kB (UME) 1*2048kB (E) 2*4096kB (M) = 15016kB
Node 0 DMA32: 1267*4kB (UM) 183*8kB (UME) 100*16kB (UME) 49*32kB (UME) 35*64kB (UME) 17*128kB (UME) 19*256kB (UME) 17*512kB (UM) 13*1024kB (UM) 14*2048kB (UME) 684*4096kB (M) = 2871332kB
Node 0 Normal: 316*4kB (UM) 78*8kB (UM) 55*16kB (UM) 21*32kB (UM) 13*64kB (UME) 7*128kB (ME) 5*256kB (M) 5*512kB (M) 4*1024kB (UME) 6*2048kB (UME) 93*4096kB (M) = 406320kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
27093 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
trinity-c0 invoked oom-killer: gfp_mask=0x0(), order=0, oom_score_adj=500
trinity-c0 cpuset=/ mems_allowed=0
CPU: 1 PID: 12631 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
00000000000001f4 ffff8800b8977bb8 ffffffff81971b01 ffff8800b8977de0
ffff8800b896d280 ffff8800b8977c38 ffffffff813cabd6 ffffffff83aba1a4
0000000000000206 ffffffff83aba1a0 ffff8800b8977bf0 ffffffff83295e4f
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff813cabd6>] dump_header+0x112/0x49e
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff81981590>] ? ___ratelimit+0x1f0/0x3b0
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff812cfd3a>] oom_kill_process+0x4ca/0xa30
[<ffffffff810fa4de>] ? has_ns_capability_noaudit+0x4e/0x70
[<ffffffff810fa512>] ? has_capability_noaudit+0x12/0x20
[<ffffffff812cec57>] ? oom_badness+0x267/0x3b0
[<ffffffff812d0c9c>] out_of_memory+0x91c/0xd70
[<ffffffff812d0380>] ? unregister_oom_notifier+0x20/0x20
[<ffffffff812d11ac>] pagefault_out_of_memory+0xbc/0x120
[<ffffffff812d10f0>] ? out_of_memory+0xd70/0xd70
[<ffffffff810c056a>] mm_fault_error+0xca/0x300
[<ffffffff8134ba8a>] ? find_vma+0x1a/0x150
[<ffffffff810c0f0f>] __do_page_fault+0x76f/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
Mem-Info:
active_anon:25834 inactive_anon:3363 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8626 slab_unreclaimable:4030
mapped:5430 shmem:26569 pagetables:152 bounce:0
free:822251 free_pcp:953 free_cma:0
Node 0 DMA free:15016kB min:308kB low:384kB high:460kB active_anon:564kB inactive_anon:0kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:184kB shmem:556kB slab_reclaimable:216kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2868196kB min:58576kB low:73220kB high:87864kB active_anon:84848kB inactive_anon:11952kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:16920kB shmem:90216kB slab_reclaimable:29360kB slab_unreclaimable:12744kB kernel_stack:1792kB pagetables:508kB unstable:0kB bounce:0kB free_pcp:1928kB local_pcp:476kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:405576kB min:8692kB low:10864kB high:13036kB active_anon:17924kB inactive_anon:1500kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4616kB shmem:15504kB slab_reclaimable:4928kB slab_unreclaimable:3176kB kernel_stack:1088kB pagetables:96kB unstable:0kB bounce:0kB free_pcp:1996kB local_pcp:676kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 4*4kB (M) 3*8kB (ME) 4*16kB (UM) 2*32kB (UE) 2*64kB (UM) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 3*1024kB (UME) 1*2048kB (E) 2*4096kB (M) = 15016kB
Node 0 DMA32: 514*4kB (UM) 123*8kB (UME) 87*16kB (UME) 46*32kB (UME) 36*64kB (UME) 18*128kB (UME) 20*256kB (UME) 16*512kB (UM) 14*1024kB (UM) 14*2048kB (UME) 684*4096kB (M) = 2868496kB
Node 0 Normal: 26*4kB (UM) 44*8kB (UM) 50*16kB (UM) 33*32kB (UM) 13*64kB (UME) 8*128kB (ME) 6*256kB (M) 5*512kB (M) 4*1024kB (UME) 6*2048kB (UME) 93*4096kB (M) = 405576kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
27078 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[ pid ] uid tgid total_vm rss nr_ptes nr_pmds swapents oom_score_adj name
[ 1283] 65534 1283 8848 1546 17 4 0 0 trinity-main
[12097] 65534 12097 8879 3832 25 4 0 500 trinity-c2
[12526] 65534 12526 8930 1611 23 5 0 500 trinity-c3
[12631] 65534 12631 10305 4777 30 5 0 500 trinity-c0
[12782] 65534 12782 9851 6842 28 5 0 500 trinity-c1
Out of memory: Kill process 12782 (trinity-c1) score 507 or sacrifice child
Killed process 12782 (trinity-c1) total-vm:39404kB, anon-rss:6724kB, file-rss:1196kB, shmem-rss:19448kB
vmalloc: allocation failure: 8 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 0 PID: 15347 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b88eeed0 ffffffff81971b01 1ffff1001711ddde
ffffffff8347fc80 ffff8800b88eefe8 ffffffff812daf9f ffff8800b8968000
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff819a922a>] ? get_pages_array+0x2a/0x30
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff819a922a>] ? get_pages_array+0x2a/0x30
[<ffffffff819a922a>] get_pages_array+0x2a/0x30
[<ffffffff819afec7>] iov_iter_get_pages_alloc+0x357/0x980
[<ffffffff810558b6>] ? print_context_stack+0x66/0xd0
[<ffffffff83102d52>] p9_get_mapped_pages.isra.6.part.7+0x1c2/0x740
[<ffffffff83102b90>] ? req_done+0x230/0x230
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff831055d0>] p9_virtio_zc_request+0xab0/0xdb0
[<ffffffff810558b6>] ? print_context_stack+0x66/0xd0
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff81973c95>] ? idr_get_empty_slot+0x325/0x9c0
[<ffffffff83104b20>] ? pack_sg_list_p.constprop.9+0x3c0/0x3c0
[<ffffffff81973731>] ? idr_mark_full+0x91/0xc0
[<ffffffff830fc5c8>] ? p9pdu_writef+0x88/0xa0
[<ffffffff830fc540>] ? p9pdu_vwritef+0x1dd0/0x1dd0
[<ffffffff830fc540>] ? p9pdu_vwritef+0x1dd0/0x1dd0
[<ffffffff830fe2b8>] ? p9pdu_finalize+0x48/0x90
[<ffffffff830f151d>] ? p9_client_prepare_req.part.4+0x37d/0x8c0
[<ffffffff830f2f36>] p9_client_zc_rpc.constprop.8+0x246/0xb10
[<ffffffff830f2cf0>] ? p9_client_rpc+0xa40/0xa40
[<ffffffff8139ef16>] ? kasan_unpoison_shadow+0x36/0x50
[<ffffffff8139f0c8>] ? kasan_alloc_pages+0x38/0x40
[<ffffffff812d9b09>] ? get_page_from_freelist+0x1289/0x1e70
[<ffffffff812bb498>] ? perf_output_begin+0x3a8/0x9b0
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff813b54b1>] ? mem_cgroup_event_ratelimit.isra.32+0x51/0x120
[<ffffffff830f6b99>] p9_client_read+0x4c9/0x750
[<ffffffff813b4802>] ? mem_cgroup_charge_statistics+0x102/0x260
[<ffffffff830f66d0>] ? p9_client_unlinkat+0xf0/0xf0
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff8175d56c>] v9fs_fid_readpage+0x14c/0x320
[<ffffffff8175d420>] ? v9fs_write_end+0x3b0/0x3b0
[<ffffffff812f06c4>] ? __lru_cache_add+0x114/0x1a0
[<ffffffff812f0819>] ? lru_cache_add+0x9/0x10
[<ffffffff812c36a0>] ? add_to_page_cache_locked+0x10/0x10
[<ffffffff8175d776>] v9fs_vfs_readpage+0x36/0x50
[<ffffffff812c72d3>] filemap_fault+0x9a3/0xe60
[<ffffffff81331c38>] __do_fault+0x158/0x300
[<ffffffff81331ae0>] ? do_page_mkwrite+0x290/0x290
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff8133a1c1>] handle_mm_fault+0x1cf1/0x3c80
[<ffffffff811d3072>] ? call_rcu+0x12/0x20
[<ffffffff810e5d1c>] ? release_task+0x92c/0x1150
[<ffffffff813384d0>] ? __pmd_alloc+0x220/0x220
[<ffffffff810e53f0>] ? wait_noreap_copyout.isra.13+0x190/0x190
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff819cf0f2>] ? debug_object_activate+0x1f2/0x470
[<ffffffff8134bb5a>] ? find_vma+0xea/0x150
[<ffffffff810c0aaa>] __do_page_fault+0x30a/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
[<ffffffff8199a65c>] ? copy_user_generic_string+0x2c/0x40
[<ffffffff813d8115>] ? SyS_copy_file_range+0x105/0x440
[<ffffffff813d8010>] ? vfs_copy_file_range+0x650/0x650
[<ffffffff811e09a0>] ? do_setitimer+0x540/0x540
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff813d8010>] ? vfs_copy_file_range+0x650/0x650
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:24848 inactive_anon:18361 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8666 slab_unreclaimable:4062
mapped:714 shmem:41587 pagetables:138 bounce:0
free:808158 free_pcp:1060 free_cma:0
Node 0 DMA free:14640kB min:308kB low:384kB high:460kB active_anon:564kB inactive_anon:336kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:60kB shmem:892kB slab_reclaimable:232kB slab_unreclaimable:64kB kernel_stack:0kB pagetables:8kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2820356kB min:58576kB low:73220kB high:87864kB active_anon:82088kB inactive_anon:62816kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:2036kB shmem:141152kB slab_reclaimable:29488kB slab_unreclaimable:12968kB kernel_stack:1600kB pagetables:420kB unstable:0kB bounce:0kB free_pcp:2064kB local_pcp:124kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:397636kB min:8692kB low:10864kB high:13036kB active_anon:16740kB inactive_anon:10292kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:760kB shmem:24304kB slab_reclaimable:4944kB slab_unreclaimable:3216kB kernel_stack:1120kB pagetables:124kB unstable:0kB bounce:0kB free_pcp:2176kB local_pcp:108kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 4*8kB (UME) 5*16kB (UME) 2*32kB (UM) 0*64kB 1*128kB (U) 2*256kB (UE) 1*512kB (E) 3*1024kB (UME) 1*2048kB (E) 2*4096kB (M) = 14648kB
Node 0 DMA32: 40*4kB (UM) 40*8kB (UME) 32*16kB (UME) 30*32kB (UME) 21*64kB (UME) 4*128kB (UME) 5*256kB (UE) 1*512kB (U) 1*1024kB (U) 4*2048kB (UME) 685*4096kB (M) = 2820576kB
Node 0 Normal: 25*4kB (UM) 21*8kB (UM) 14*16kB (UME) 5*32kB (UME) 4*64kB (UM) 2*128kB (UE) 1*256kB (M) 0*512kB 3*1024kB (UME) 6*2048kB (UME) 93*4096kB (M) = 397708kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
42096 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 8 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 0 PID: 15347 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b88eeeb0 ffffffff81971b01 1ffff1001711ddda
ffffffff8347fc80 ffff8800b88eefc8 ffffffff812daf9f ffff8800b8968000
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff819a922a>] ? get_pages_array+0x2a/0x30
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff819a922a>] ? get_pages_array+0x2a/0x30
[<ffffffff819a922a>] get_pages_array+0x2a/0x30
[<ffffffff819afec7>] iov_iter_get_pages_alloc+0x357/0x980
[<ffffffff819a922a>] ? get_pages_array+0x2a/0x30
[<ffffffff83102d52>] p9_get_mapped_pages.isra.6.part.7+0x1c2/0x740
[<ffffffff83102b90>] ? req_done+0x230/0x230
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff831055d0>] p9_virtio_zc_request+0xab0/0xdb0
[<ffffffff831055d0>] ? p9_virtio_zc_request+0xab0/0xdb0
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff81973c95>] ? idr_get_empty_slot+0x325/0x9c0
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff83104b20>] ? pack_sg_list_p.constprop.9+0x3c0/0x3c0
[<ffffffff81973731>] ? idr_mark_full+0x91/0xc0
[<ffffffff830fc5c8>] ? p9pdu_writef+0x88/0xa0
[<ffffffff830fc540>] ? p9pdu_vwritef+0x1dd0/0x1dd0
[<ffffffff830fc540>] ? p9pdu_vwritef+0x1dd0/0x1dd0
[<ffffffff830fe2b8>] ? p9pdu_finalize+0x48/0x90
[<ffffffff830f151d>] ? p9_client_prepare_req.part.4+0x37d/0x8c0
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff830f2f36>] p9_client_zc_rpc.constprop.8+0x246/0xb10
[<ffffffff830f323b>] ? p9_client_zc_rpc.constprop.8+0x54b/0xb10
[<ffffffff830f2cf0>] ? p9_client_rpc+0xa40/0xa40
[<ffffffff830f2cf0>] ? p9_client_rpc+0xa40/0xa40
[<ffffffff8139ef16>] ? kasan_unpoison_shadow+0x36/0x50
[<ffffffff8139f0c8>] ? kasan_alloc_pages+0x38/0x40
[<ffffffff812d9b09>] ? get_page_from_freelist+0x1289/0x1e70
[<ffffffff812bb498>] ? perf_output_begin+0x3a8/0x9b0
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff830f6b99>] p9_client_read+0x4c9/0x750
[<ffffffff830f66d0>] ? p9_client_unlinkat+0xf0/0xf0
[<ffffffff830f66d0>] ? p9_client_unlinkat+0xf0/0xf0
[<ffffffff81157fa0>] ? in_sched_functions+0x40/0x40
[<ffffffff81199440>] ? woken_wake_function+0x60/0x60
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff8175d56c>] v9fs_fid_readpage+0x14c/0x320
[<ffffffff8175d420>] ? v9fs_write_end+0x3b0/0x3b0
[<ffffffff8197e108>] ? radix_tree_lookup_slot+0x58/0x90
[<ffffffff812f06c4>] ? __lru_cache_add+0x114/0x1a0
[<ffffffff8175d776>] v9fs_vfs_readpage+0x36/0x50
[<ffffffff812c6c00>] filemap_fault+0x2d0/0xe60
[<ffffffff81331c38>] __do_fault+0x158/0x300
[<ffffffff81331ae0>] ? do_page_mkwrite+0x290/0x290
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff8133a1c1>] handle_mm_fault+0x1cf1/0x3c80
[<ffffffff8133a1c1>] ? handle_mm_fault+0x1cf1/0x3c80
[<ffffffff813384d0>] ? __pmd_alloc+0x220/0x220
[<ffffffff810c22d0>] ? fixup_exception+0x80/0xa0
[<ffffffff810bf837>] ? no_context+0x87/0x6b0
[<ffffffff810bf7b0>] ? pgtable_bad+0x110/0x110
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff8134ba8a>] ? find_vma+0x1a/0x150
[<ffffffff810c0aaa>] __do_page_fault+0x30a/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
[<ffffffff8199f37d>] ? copy_user_handle_tail+0x1d/0xa0
[<ffffffff813d8115>] SyS_copy_file_range+0x105/0x440
[<ffffffff813d8010>] ? vfs_copy_file_range+0x650/0x650
[<ffffffff811e09a0>] ? do_setitimer+0x540/0x540
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff813d8010>] ? vfs_copy_file_range+0x650/0x650
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:24848 inactive_anon:18361 isolated_anon:0
active_file:466 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8666 slab_unreclaimable:4062
mapped:714 shmem:41587 pagetables:138 bounce:0
free:808158 free_pcp:1060 free_cma:0
Node 0 DMA free:14640kB min:308kB low:384kB high:460kB active_anon:564kB inactive_anon:336kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:60kB shmem:892kB slab_reclaimable:232kB slab_unreclaimable:64kB kernel_stack:0kB pagetables:8kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2820356kB min:58576kB low:73220kB high:87864kB active_anon:82088kB inactive_anon:62816kB active_file:1452kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:2036kB shmem:141152kB slab_reclaimable:29488kB slab_unreclaimable:12968kB kernel_stack:1600kB pagetables:420kB unstable:0kB bounce:0kB free_pcp:2064kB local_pcp:124kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:397636kB min:8692kB low:10864kB high:13036kB active_anon:16740kB inactive_anon:10292kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:760kB shmem:24304kB slab_reclaimable:4944kB slab_unreclaimable:3216kB kernel_stack:1120kB pagetables:124kB unstable:0kB bounce:0kB free_pcp:2176kB local_pcp:108kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 4*8kB (UME) 5*16kB (UME) 2*32kB (UM) 0*64kB 1*128kB (U) 2*256kB (UE) 1*512kB (E) 3*1024kB (UME) 1*2048kB (E) 2*4096kB (M) = 14648kB
Node 0 DMA32: 40*4kB (UM) 40*8kB (UME) 32*16kB (UME) 30*32kB (UME) 21*64kB (UME) 4*128kB (UME) 5*256kB (UE) 1*512kB (U) 1*1024kB (U) 4*2048kB (UME) 685*4096kB (M) = 2820576kB
Node 0 Normal: 25*4kB (UM) 21*8kB (UM) 14*16kB (UME) 5*32kB (UME) 4*64kB (UM) 2*128kB (UE) 1*256kB (M) 0*512kB 3*1024kB (UME) 6*2048kB (UME) 93*4096kB (M) = 397708kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
42096 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
trinity-c0 (15347) used greatest stack depth: 25800 bytes left
vmalloc: allocation failure: 8 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 2 PID: 18594 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff880119eceed0 ffffffff81971b01 1ffff100233d9dde
ffffffff8347fc80 ffff880119ecefe8 ffffffff812daf9f ffff8800b8969b80
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff819a922a>] ? get_pages_array+0x2a/0x30
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff819a922a>] ? get_pages_array+0x2a/0x30
[<ffffffff819a922a>] get_pages_array+0x2a/0x30
[<ffffffff819afec7>] iov_iter_get_pages_alloc+0x357/0x980
[<ffffffff83102d52>] p9_get_mapped_pages.isra.6.part.7+0x1c2/0x740
[<ffffffff83102b90>] ? req_done+0x230/0x230
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff812bb498>] ? perf_output_begin+0x3a8/0x9b0
[<ffffffff831055d0>] p9_virtio_zc_request+0xab0/0xdb0
[<ffffffff812bb0f0>] ? perf_output_begin_backward+0x960/0x960
[<ffffffff830fa770>] ? pdu_read+0xc0/0xc0
[<ffffffff81973c95>] ? idr_get_empty_slot+0x325/0x9c0
[<ffffffff812bb0f0>] ? perf_output_begin_backward+0x960/0x960
[<ffffffff83104b20>] ? pack_sg_list_p.constprop.9+0x3c0/0x3c0
[<ffffffff81973731>] ? idr_mark_full+0x91/0xc0
[<ffffffff830fc5c8>] ? p9pdu_writef+0x88/0xa0
[<ffffffff830fc540>] ? p9pdu_vwritef+0x1dd0/0x1dd0
[<ffffffff830fc540>] ? p9pdu_vwritef+0x1dd0/0x1dd0
[<ffffffff830fe2b8>] ? p9pdu_finalize+0x48/0x90
[<ffffffff830f151d>] ? p9_client_prepare_req.part.4+0x37d/0x8c0
[<ffffffff830f2f36>] p9_client_zc_rpc.constprop.8+0x246/0xb10
[<ffffffff830f2cf0>] ? p9_client_rpc+0xa40/0xa40
[<ffffffff810558b6>] ? print_context_stack+0x66/0xd0
[<ffffffff812bb498>] ? perf_output_begin+0x3a8/0x9b0
[<ffffffff81292b98>] ? perf_event_switch_output+0x1d8/0x6c0
[<ffffffff812929c0>] ? perf_log_itrace_start+0x3a0/0x3a0
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff830f6b99>] p9_client_read+0x4c9/0x750
[<ffffffff830f66d0>] ? p9_client_unlinkat+0xf0/0xf0
[<ffffffff81157fa0>] ? in_sched_functions+0x40/0x40
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff8175d56c>] v9fs_fid_readpage+0x14c/0x320
[<ffffffff8175d420>] ? v9fs_write_end+0x3b0/0x3b0
[<ffffffff8197e108>] ? radix_tree_lookup_slot+0x58/0x90
[<ffffffff8175d776>] v9fs_vfs_readpage+0x36/0x50
[<ffffffff812c6c00>] filemap_fault+0x2d0/0xe60
[<ffffffff81331c38>] __do_fault+0x158/0x300
[<ffffffff81331ae0>] ? do_page_mkwrite+0x290/0x290
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff8133a1c1>] handle_mm_fault+0x1cf1/0x3c80
[<ffffffff811d3072>] ? call_rcu+0x12/0x20
[<ffffffff810e5d1c>] ? release_task+0x92c/0x1150
[<ffffffff813384d0>] ? __pmd_alloc+0x220/0x220
[<ffffffff810e53f0>] ? wait_noreap_copyout.isra.13+0x190/0x190
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff819cf0f2>] ? debug_object_activate+0x1f2/0x470
[<ffffffff8134bb5a>] ? find_vma+0xea/0x150
[<ffffffff810c0aaa>] __do_page_fault+0x30a/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
[<ffffffff8199a65c>] ? copy_user_generic_string+0x2c/0x40
[<ffffffff813d8115>] ? SyS_copy_file_range+0x105/0x440
[<ffffffff813d8010>] ? vfs_copy_file_range+0x650/0x650
[<ffffffff811e09a0>] ? do_setitimer+0x540/0x540
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff813d8010>] ? vfs_copy_file_range+0x650/0x650
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:24561 inactive_anon:55307 isolated_anon:0
active_file:466 inactive_file:44 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8794 slab_unreclaimable:4042
mapped:5688 shmem:78221 pagetables:138 bounce:0
free:771412 free_pcp:1049 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:568kB inactive_anon:1068kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:144kB shmem:1628kB slab_reclaimable:248kB slab_unreclaimable:64kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2695320kB min:58576kB low:73220kB high:87864kB active_anon:81148kB inactive_anon:188276kB active_file:1452kB inactive_file:164kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17620kB shmem:265552kB slab_reclaimable:29936kB slab_unreclaimable:12864kB kernel_stack:1600kB pagetables:308kB unstable:0kB bounce:0kB free_pcp:2244kB local_pcp:136kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:376432kB min:8692kB low:10864kB high:13036kB active_anon:16528kB inactive_anon:31884kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4988kB shmem:45704kB slab_reclaimable:4992kB slab_unreclaimable:3240kB kernel_stack:1120kB pagetables:240kB unstable:0kB bounce:0kB free_pcp:1952kB local_pcp:16kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 3*8kB (UE) 5*16kB (UM) 1*32kB (U) 1*64kB (M) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 44*4kB (UM) 33*8kB (UE) 4*16kB (UME) 13*32kB (UM) 15*64kB (U) 3*128kB (UME) 6*256kB (UME) 1*512kB (U) 2*1024kB (UM) 3*2048kB (UE) 655*4096kB (M) = 2695384kB
Node 0 Normal: 70*4kB (UM) 25*8kB (UM) 21*16kB (UM) 9*32kB (UM) 3*64kB (UM) 3*128kB (UME) 2*256kB (UM) 1*512kB (U) 1*1024kB (E) 2*2048kB (UE) 90*4096kB (M) = 376464kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
78731 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
vmalloc: allocation failure: 8 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 2 PID: 18594 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff880119ecfc18 ffffffff81971b01 1ffff100233d9f87
ffffffff8347fc80 ffff880119ecfd30 ffffffff812daf9f ffff8800b8969b80
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff81440320>] ? listxattr+0x100/0x120
[<ffffffff81440320>] listxattr+0x100/0x120
[<ffffffff814403e5>] path_listxattr+0xa5/0x100
[<ffffffff81440340>] ? listxattr+0x120/0x120
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81440b90>] ? SyS_listxattr+0x10/0x10
[<ffffffff81440b9b>] SyS_llistxattr+0xb/0x10
[<ffffffff8100378b>] do_int80_syscall_32+0x1cb/0x450
[<ffffffff81003477>] ? do_syscall_64+0x2c7/0x410
[<ffffffff83298153>] entry_INT80_compat+0x33/0x40
Mem-Info:
active_anon:24576 inactive_anon:55307 isolated_anon:0
active_file:466 inactive_file:44 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8794 slab_unreclaimable:4054
mapped:5689 shmem:78221 pagetables:154 bounce:0
free:771322 free_pcp:1079 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:568kB inactive_anon:1068kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:144kB shmem:1628kB slab_reclaimable:248kB slab_unreclaimable:64kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2695284kB min:58576kB low:73220kB high:87864kB active_anon:81156kB inactive_anon:188276kB active_file:1452kB inactive_file:164kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17624kB shmem:265552kB slab_reclaimable:29936kB slab_unreclaimable:12896kB kernel_stack:1568kB pagetables:364kB unstable:0kB bounce:0kB free_pcp:2116kB local_pcp:92kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:376108kB min:8692kB low:10864kB high:13036kB active_anon:16580kB inactive_anon:31884kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4988kB shmem:45704kB slab_reclaimable:4992kB slab_unreclaimable:3256kB kernel_stack:1120kB pagetables:248kB unstable:0kB bounce:0kB free_pcp:2200kB local_pcp:144kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 3*8kB (UE) 5*16kB (UM) 1*32kB (U) 1*64kB (M) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 73*4kB (UM) 30*8kB (UME) 2*16kB (UE) 13*32kB (UM) 16*64kB (UM) 3*128kB (UME) 6*256kB (UME) 1*512kB (U) 2*1024kB (UM) 3*2048kB (UE) 655*4096kB (M) = 2695508kB
Node 0 Normal: 40*4kB (UM) 21*8kB (UM) 15*16kB (U) 9*32kB (UM) 3*64kB (UM) 3*128kB (UME) 2*256kB (UM) 1*512kB (U) 1*1024kB (E) 2*2048kB (UE) 90*4096kB (M) = 376216kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
78731 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
trinity-c0 (18594) used greatest stack depth: 24632 bytes left
vmalloc: allocation failure: 1066176 bytes
trinity-c2: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 1 PID: 20050 Comm: trinity-c2 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8b5fb58 ffffffff81971b01 1ffff1001716bf6f
ffffffff8347fc80 ffff8800b8b5fc70 ffffffff812daf9f ffff880119c63700
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff810558b6>] ? print_context_stack+0x66/0xd0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8176fbb0>] ipc_alloc+0x20/0x30
[<ffffffff8176fbe0>] ipc_rcu_alloc+0x10/0x60
[<ffffffff81777bea>] newary+0x12a/0x960
[<ffffffff81770e07>] ipcget+0x2d7/0x520
[<ffffffff8177d5a1>] SyS_semget+0x101/0x1b0
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:26179 inactive_anon:55595 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8802 slab_unreclaimable:4018
mapped:714 shmem:80213 pagetables:134 bounce:0
free:769620 free_pcp:730 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:568kB inactive_anon:1068kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:60kB shmem:1628kB slab_reclaimable:248kB slab_unreclaimable:64kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2689508kB min:58576kB low:73220kB high:87864kB active_anon:87888kB inactive_anon:187692kB active_file:1456kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:2036kB shmem:271784kB slab_reclaimable:29952kB slab_unreclaimable:12824kB kernel_stack:2016kB pagetables:496kB unstable:0kB bounce:0kB free_pcp:988kB local_pcp:136kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:375208kB min:8692kB low:10864kB high:13036kB active_anon:16268kB inactive_anon:33620kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:760kB shmem:47440kB slab_reclaimable:5008kB slab_unreclaimable:3208kB kernel_stack:1088kB pagetables:84kB unstable:0kB bounce:0kB free_pcp:1776kB local_pcp:624kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 3*8kB (UE) 5*16kB (UM) 1*32kB (U) 1*64kB (M) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 16*4kB (UM) 79*8kB (UME) 47*16kB (UM) 14*32kB (UM) 16*64kB (UM) 2*128kB (UE) 8*256kB (UME) 1*512kB (U) 1*1024kB (U) 4*2048kB (UME) 653*4096kB (M) = 2689640kB
Node 0 Normal: 94*4kB (UM) 38*8kB (UM) 30*16kB (UME) 15*32kB (UME) 3*64kB (UE) 1*128kB (U) 2*256kB (UM) 2*512kB (UM) 1*1024kB (E) 3*2048kB (UME) 89*4096kB (M) = 375208kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
80723 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[main] 20108 iterations. [F:15252 S:5110 HI:1014]
socket: no more sockets
socket: no more sockets
vmalloc: allocation failure: 65728 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 1 PID: 29519 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8ab7b58 ffffffff81971b01 1ffff10017156f6f
ffffffff8347fc80 ffff8800b8ab7c70 ffffffff812daf9f 0000000041b58ab3
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff8139f29e>] ? kasan_kmalloc+0x5e/0x70
[<ffffffff8139ce18>] ? kfree+0x128/0x140
[<ffffffff81361767>] ? __get_vm_area_node+0x277/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8176fbb0>] ipc_alloc+0x20/0x30
[<ffffffff8176fbe0>] ipc_rcu_alloc+0x10/0x60
[<ffffffff81777bea>] newary+0x12a/0x960
[<ffffffff81770e07>] ipcget+0x2d7/0x520
[<ffffffff8177d5a1>] SyS_semget+0x101/0x1b0
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:25830 inactive_anon:65189 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:8850 slab_unreclaimable:4040
mapped:5487 shmem:88451 pagetables:108 bounce:0
free:760121 free_pcp:1078 free_cma:0
Node 0 DMA free:13960kB min:308kB low:384kB high:460kB active_anon:568kB inactive_anon:1020kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:144kB shmem:1576kB slab_reclaimable:232kB slab_unreclaimable:64kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2656052kB min:58576kB low:73220kB high:87864kB active_anon:86436kB inactive_anon:221736kB active_file:1456kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:16508kB shmem:300368kB slab_reclaimable:30096kB slab_unreclaimable:12928kB kernel_stack:1600kB pagetables:344kB unstable:0kB bounce:0kB free_pcp:2212kB local_pcp:716kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:370820kB min:8692kB low:10864kB high:13036kB active_anon:16068kB inactive_anon:38000kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:5296kB shmem:51860kB slab_reclaimable:5072kB slab_unreclaimable:3144kB kernel_stack:1088kB pagetables:20kB unstable:0kB bounce:0kB free_pcp:2028kB local_pcp:588kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 2*4kB (M) 6*8kB (UME) 3*16kB (UME) 3*32kB (UM) 1*64kB (M) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13960kB
Node 0 DMA32: 1*4kB (M) 26*8kB (UME) 11*16kB (UME) 10*32kB (UME) 17*64kB (UE) 22*128kB (UME) 15*256kB (UME) 10*512kB (UM) 10*1024kB (UME) 9*2048kB (UM) 638*4096kB (M) = 2655492kB
Node 0 Normal: 81*4kB (UM) 74*8kB (UM) 40*16kB (UME) 26*32kB (UME) 10*64kB (UM) 6*128kB (UM) 4*256kB (UM) 5*512kB (UM) 5*1024kB (ME) 5*2048kB (UME) 85*4096kB (M) = 370900kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
88961 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[main] 30127 iterations. [F:22870 S:7667 HI:2534]
vmalloc: allocation failure: 7744 bytes
trinity-c2: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 1 PID: 7940 Comm: trinity-c2 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b864fb58 ffffffff81971b01 1ffff100170c9f6f
ffffffff8347fc80 ffff8800b864fc70 ffffffff812daf9f ffff8800b896e040
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff810558b6>] ? print_context_stack+0x66/0xd0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8176fbb0>] ipc_alloc+0x20/0x30
[<ffffffff8176fbe0>] ipc_rcu_alloc+0x10/0x60
[<ffffffff81777bea>] newary+0x12a/0x960
[<ffffffff81770e5a>] ipcget+0x32a/0x520
[<ffffffff8177d5a1>] SyS_semget+0x101/0x1b0
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:25389 inactive_anon:166651 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:9202 slab_unreclaimable:4048
mapped:5522 shmem:189942 pagetables:144 bounce:0
free:658735 free_pcp:1072 free_cma:0
Node 0 DMA free:13876kB min:308kB low:384kB high:460kB active_anon:564kB inactive_anon:1124kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:128kB shmem:1680kB slab_reclaimable:232kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2303608kB min:58576kB low:73220kB high:87864kB active_anon:84584kB inactive_anon:574696kB active_file:1456kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17024kB shmem:653420kB slab_reclaimable:31328kB slab_unreclaimable:12960kB kernel_stack:1632kB pagetables:496kB unstable:0kB bounce:0kB free_pcp:2272kB local_pcp:152kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:317456kB min:8692kB low:10864kB high:13036kB active_anon:16408kB inactive_anon:90784kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4936kB shmem:104668kB slab_reclaimable:5248kB slab_unreclaimable:3184kB kernel_stack:1088kB pagetables:76kB unstable:0kB bounce:0kB free_pcp:2016kB local_pcp:84kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 1*4kB (M) 2*8kB (ME) 2*16kB (UE) 2*32kB (UM) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13876kB
Node 0 DMA32: 30*4kB (UM) 30*8kB (UME) 3*16kB (UM) 4*32kB (UME) 12*64kB (UM) 3*128kB (U) 4*256kB (UE) 2*512kB (UM) 2*1024kB (UE) 2*2048kB (U) 560*4096kB (M) = 2303640kB
Node 0 Normal: 46*4kB (UM) 29*8kB (UM) 3*16kB (UM) 4*32kB (UM) 1*64kB (M) 3*128kB (UME) 2*256kB (ME) 1*512kB (E) 2*1024kB (UM) 3*2048kB (UME) 75*4096kB (M) = 317456kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
190452 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[main] 40141 iterations. [F:30474 S:10183 HI:2534]
[main] 50240 iterations. [F:38072 S:12804 HI:2534]
vmalloc: allocation failure: 7744 bytes
trinity-c2: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 3 PID: 25601 Comm: trinity-c2 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b88f7b58 ffffffff81971b01 1ffff1001711ef6f
ffffffff8347fc80 ffff8800b88f7c70 ffffffff812daf9f 0000000041b58ab3
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff8139f29e>] ? kasan_kmalloc+0x5e/0x70
[<ffffffff8139ce18>] ? kfree+0x128/0x140
[<ffffffff81361767>] ? __get_vm_area_node+0x277/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8176fbb0>] ipc_alloc+0x20/0x30
[<ffffffff8176fbe0>] ipc_rcu_alloc+0x10/0x60
[<ffffffff81777bea>] newary+0x12a/0x960
[<ffffffff81770e5a>] ipcget+0x32a/0x520
[<ffffffff8177d5a1>] SyS_semget+0x101/0x1b0
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:26799 inactive_anon:249686 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:9518 slab_unreclaimable:4080
mapped:5363 shmem:274918 pagetables:128 bounce:0
free:573855 free_pcp:1144 free_cma:0
Node 0 DMA free:13896kB min:308kB low:384kB high:460kB active_anon:564kB inactive_anon:1104kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:128kB shmem:1660kB slab_reclaimable:232kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2014080kB min:58576kB low:73220kB high:87864kB active_anon:88832kB inactive_anon:858952kB active_file:1456kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17256kB shmem:944040kB slab_reclaimable:32400kB slab_unreclaimable:12992kB kernel_stack:1632kB pagetables:416kB unstable:0kB bounce:0kB free_pcp:2204kB local_pcp:124kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:267444kB min:8692kB low:10864kB high:13036kB active_anon:17800kB inactive_anon:138688kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4068kB shmem:153972kB slab_reclaimable:5440kB slab_unreclaimable:3280kB kernel_stack:1088kB pagetables:92kB unstable:0kB bounce:0kB free_pcp:2372kB local_pcp:260kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 1*8kB (E) 2*16kB (UE) 1*32kB (U) 2*64kB (UM) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13896kB
Node 0 DMA32: 62*4kB (UM) 27*8kB (UME) 4*16kB (UE) 9*32kB (UME) 10*64kB (UME) 4*128kB (UE) 4*256kB (UM) 2*512kB (UM) 1*1024kB (U) 3*2048kB (UM) 489*4096kB (M) = 2014128kB
Node 0 Normal: 1*4kB (U) 16*8kB (U) 3*16kB (U) 2*32kB (UM) 3*64kB (UME) 2*128kB (UE) 2*256kB (UM) 2*512kB (UE) 1*1024kB (M) 3*2048kB (UME) 63*4096kB (M) = 267444kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
275428 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[main] 60285 iterations. [F:45664 S:15397 HI:2534]
anon_vma_clone: 00007f77984d7000-00007f77985d1000 ffff8800baa9d500 100073 (null) ffff8800b873f200 | 00007f77984d1000-00007f77985d1000 ffff8800baa9d500 100073 (null) ffff8800b873f200
trinity-c3 invoked oom-killer: gfp_mask=0x0(), order=0, oom_score_adj=500
trinity-c3 cpuset=/ mems_allowed=0
CPU: 0 PID: 6003 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
00000000000001f4 ffff8800b86d7bb8 ffffffff81971b01 ffff8800b86d7de0
ffff8800b896c4c0 ffff8800b86d7c38 ffffffff813cabd6 ffffffff83aba1a4
0000000000000206 ffffffff83aba1a0 ffff8800b86d7bf0 ffffffff83295e4f
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff813cabd6>] dump_header+0x112/0x49e
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff81981590>] ? ___ratelimit+0x1f0/0x3b0
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff812cfd3a>] oom_kill_process+0x4ca/0xa30
[<ffffffff812ce448>] ? find_lock_task_mm+0xc8/0x190
[<ffffffff812cea29>] ? oom_badness+0x39/0x3b0
[<ffffffff812d0c9c>] out_of_memory+0x91c/0xd70
[<ffffffff812d0380>] ? unregister_oom_notifier+0x20/0x20
[<ffffffff812d11ac>] pagefault_out_of_memory+0xbc/0x120
[<ffffffff812d10f0>] ? out_of_memory+0xd70/0xd70
[<ffffffff81347734>] ? vma_link+0x124/0x160
[<ffffffff810c056a>] mm_fault_error+0xca/0x300
[<ffffffff8134bb5a>] ? find_vma+0xea/0x150
[<ffffffff810c0f0f>] __do_page_fault+0x76f/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
Mem-Info:
active_anon:27320 inactive_anon:233184 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:8 dirty:0 writeback:0 unstable:0
slab_reclaimable:9458 slab_unreclaimable:4124
mapped:5681 shmem:258972 pagetables:85 bounce:0
free:589943 free_pcp:796 free_cma:0
Node 0 DMA free:13880kB min:308kB low:384kB high:460kB active_anon:528kB inactive_anon:1156kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:136kB shmem:1676kB slab_reclaimable:232kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2065896kB min:58576kB low:73220kB high:87864kB active_anon:90724kB inactive_anon:804808kB active_file:1456kB inactive_file:160kB unevictable:32kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:32kB dirty:0kB writeback:0kB mapped:17948kB shmem:891768kB slab_reclaimable:32224kB slab_unreclaimable:13192kB kernel_stack:1664kB pagetables:312kB unstable:0kB bounce:0kB free_pcp:1604kB local_pcp:84kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:279720kB min:8692kB low:10864kB high:13036kB active_anon:18080kB inactive_anon:126772kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4640kB shmem:142444kB slab_reclaimable:5376kB slab_unreclaimable:3304kB kernel_stack:1056kB pagetables:32kB unstable:0kB bounce:0kB free_pcp:1552kB local_pcp:160kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 0*4kB 1*8kB (E) 3*16kB (UME) 2*32kB (UM) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13880kB
Node 0 DMA32: 51*4kB (UM) 79*8kB (UME) 22*16kB (UM) 18*32kB (UME) 7*64kB (UM) 6*128kB (UME) 5*256kB (UME) 1*512kB (E) 3*1024kB (UME) 3*2048kB (UE) 501*4096kB (M) = 2066084kB
Node 0 Normal: 21*4kB (UM) 23*8kB (U) 26*16kB (UM) 10*32kB (UM) 4*64kB (ME) 3*128kB (UME) 1*256kB (M) 1*512kB (E) 1*1024kB (U) 3*2048kB (UME) 66*4096kB (M) = 279916kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
259482 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[ pid ] uid tgid total_vm rss nr_ptes nr_pmds swapents oom_score_adj name
[ 1283] 65534 1283 8848 1546 17 4 0 0 trinity-main
[ 4904] 65534 4904 8962 5274 27 5 0 500 trinity-c2
[ 5318] 65534 5318 8848 1505 16 4 0 500 trinity-c1
[ 5787] 65534 5787 8873 6527 26 4 0 500 trinity-c0
[ 6003] 65534 6003 9897 1602 22 4 0 500 trinity-c3
Out of memory: Kill process 5787 (trinity-c0) score 507 or sacrifice child
Killed process 5787 (trinity-c0) total-vm:36544kB, anon-rss:5644kB, file-rss:1200kB, shmem-rss:20176kB
oom_reaper: reaped process 5787 (trinity-c0), now anon-rss:0kB, file-rss:0kB, shmem-rss:20176kB
[main] 70352 iterations. [F:53326 S:17917 HI:3246 STALLED:1]
trinity-c0 invoked oom-killer: gfp_mask=0x0(), order=0, oom_score_adj=500
trinity-c0 cpuset=/ mems_allowed=0
CPU: 2 PID: 11906 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
00000000000001f4 ffff8800b745fbb8 ffffffff81971b01 ffff8800b745fde0
ffff88011a365280 ffff8800b745fc38 ffffffff813cabd6 ffffffff83aba1a4
0000000000000206 ffffffff83aba1a0 ffff8800b745fbf0 ffffffff83295e4f
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff813cabd6>] dump_header+0x112/0x49e
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff81981590>] ? ___ratelimit+0x1f0/0x3b0
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff812cfd3a>] oom_kill_process+0x4ca/0xa30
[<ffffffff810fa4de>] ? has_ns_capability_noaudit+0x4e/0x70
[<ffffffff810fa512>] ? has_capability_noaudit+0x12/0x20
[<ffffffff812cec57>] ? oom_badness+0x267/0x3b0
[<ffffffff812d0c9c>] out_of_memory+0x91c/0xd70
[<ffffffff812d0380>] ? unregister_oom_notifier+0x20/0x20
[<ffffffff812d11ac>] pagefault_out_of_memory+0xbc/0x120
[<ffffffff812d10f0>] ? out_of_memory+0xd70/0xd70
[<ffffffff81347734>] ? vma_link+0x124/0x160
[<ffffffff810c056a>] mm_fault_error+0xca/0x300
[<ffffffff8134bb5a>] ? find_vma+0xea/0x150
[<ffffffff810c0f0f>] __do_page_fault+0x76f/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
Mem-Info:
active_anon:12176 inactive_anon:124558 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:9014 slab_unreclaimable:4154
mapped:5673 shmem:134844 pagetables:162 bounce:0
free:713949 free_pcp:1052 free_cma:0
Node 0 DMA free:14168kB min:308kB low:384kB high:460kB active_anon:136kB inactive_anon:1276kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:108kB shmem:1380kB slab_reclaimable:200kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:12kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2494484kB min:58576kB low:73220kB high:87864kB active_anon:39388kB inactive_anon:428760kB active_file:1456kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:17592kB shmem:463164kB slab_reclaimable:30624kB slab_unreclaimable:13224kB kernel_stack:1664kB pagetables:596kB unstable:0kB bounce:0kB free_pcp:2148kB local_pcp:80kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:347144kB min:8692kB low:10864kB high:13036kB active_anon:9180kB inactive_anon:68196kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4992kB shmem:74832kB slab_reclaimable:5232kB slab_unreclaimable:3344kB kernel_stack:1088kB pagetables:40kB unstable:0kB bounce:0kB free_pcp:2060kB local_pcp:112kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 1*4kB (U) 2*8kB (UE) 3*16kB (UE) 3*32kB (UE) 1*64kB (M) 1*128kB (U) 2*256kB (UE) 2*512kB (ME) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 14180kB
Node 0 DMA32: 221*4kB (UM) 139*8kB (UME) 88*16kB (UME) 64*32kB (UME) 14*64kB (UE) 7*128kB (UME) 3*256kB (UE) 1*512kB (E) 24*1024kB (UME) 60*2048kB (UME) 571*4096kB (M) = 2494796kB
Node 0 Normal: 203*4kB (UM) 70*8kB (UM) 42*16kB (UME) 19*32kB (UME) 4*64kB (UME) 2*128kB (ME) 32*256kB (M) 28*512kB (ME) 24*1024kB (UM) 13*2048kB (UME) 66*4096kB (M) = 347228kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
135354 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[ pid ] uid tgid total_vm rss nr_ptes nr_pmds swapents oom_score_adj name
[ 1283] 65534 1283 8848 1546 17 4 0 0 trinity-main
[ 9914] 65534 9914 9222 5877 27 4 0 500 trinity-c2
[10105] 65534 10105 9041 2092 25 4 0 500 trinity-c3
[10852] 65534 10852 9142 6775 26 4 0 500 trinity-c1
[11906] 65534 11906 8881 1545 19 4 0 500 trinity-c0
Out of memory: Kill process 10852 (trinity-c1) score 507 or sacrifice child
Killed process 10852 (trinity-c1) total-vm:36568kB, anon-rss:5700kB, file-rss:1216kB, shmem-rss:20184kB
[main] 80399 iterations. [F:60924 S:20500 HI:3246]
vmalloc: allocation failure: 135872 bytes
trinity-c3: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 0 PID: 18712 Comm: trinity-c3 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff8800b8bdfaa8 ffffffff81971b01 1ffff1001717bf59
ffffffff8347fc80 ffff8800b8bdfbc0 ffffffff812daf9f ffff8800b8968000
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff813a0480>] ? should_failslab+0xb0/0xf0
[<ffffffff813615a3>] ? __get_vm_area_node+0xb3/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff810558b6>] ? print_context_stack+0x66/0xd0
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8176fbb0>] ? ipc_alloc+0x20/0x30
[<ffffffff8176fbb0>] ipc_alloc+0x20/0x30
[<ffffffff8176fbe0>] ipc_rcu_alloc+0x10/0x60
[<ffffffff81777bea>] newary+0x12a/0x960
[<ffffffff81770e07>] ipcget+0x2d7/0x520
[<ffffffff8177d5a1>] SyS_semget+0x101/0x1b0
[<ffffffff8177d4a0>] ? sem_exit_ns+0x30/0x30
[<ffffffff810ed959>] ? SyS_wait4+0xd9/0x170
[<ffffffff8176e5cc>] compat_SyS_ipc+0xdc/0x330
[<ffffffff8176e4f0>] ? do_compat_semctl+0x770/0x770
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff8176e4f0>] ? do_compat_semctl+0x770/0x770
[<ffffffff8100378b>] do_int80_syscall_32+0x1cb/0x450
[<ffffffff81003477>] ? do_syscall_64+0x2c7/0x410
[<ffffffff83298153>] entry_INT80_compat+0x33/0x40
Mem-Info:
active_anon:8909 inactive_anon:122362 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:12 dirty:0 writeback:0 unstable:0
slab_reclaimable:9090 slab_unreclaimable:4118
mapped:1110 shmem:129705 pagetables:116 bounce:0
free:719399 free_pcp:954 free_cma:0
Node 0 DMA free:14876kB min:308kB low:384kB high:460kB active_anon:124kB inactive_anon:584kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:60kB shmem:688kB slab_reclaimable:200kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:16kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2509904kB min:58576kB low:73220kB high:87864kB active_anon:26024kB inactive_anon:426568kB active_file:1456kB inactive_file:160kB unevictable:48kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:48kB dirty:0kB writeback:0kB mapped:3620kB shmem:449200kB slab_reclaimable:30928kB slab_unreclaimable:13152kB kernel_stack:1632kB pagetables:368kB unstable:0kB bounce:0kB free_pcp:1876kB local_pcp:628kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:352816kB min:8692kB low:10864kB high:13036kB active_anon:9488kB inactive_anon:62296kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:760kB shmem:68932kB slab_reclaimable:5232kB slab_unreclaimable:3272kB kernel_stack:1120kB pagetables:80kB unstable:0kB bounce:0kB free_pcp:1940kB local_pcp:704kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 13*4kB (UM) 5*8kB (UME) 8*16kB (UME) 4*32kB (ME) 5*64kB (UM) 5*128kB (UM) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 14876kB
Node 0 DMA32: 282*4kB (UM) 315*8kB (UME) 531*16kB (UME) 362*32kB (UME) 217*64kB (UME) 113*128kB (UME) 75*256kB (UME) 51*512kB (UME) 24*1024kB (ME) 12*2048kB (UME) 577*4096kB (M) = 2509936kB
Node 0 Normal: 148*4kB (UM) 290*8kB (UM) 233*16kB (UME) 135*32kB (UME) 82*64kB (UME) 16*128kB (UME) 21*256kB (M) 3*512kB (ME) 30*1024kB (UM) 13*2048kB (ME) 66*4096kB (M) = 352848kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
130215 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[main] 90420 iterations. [F:68481 S:23108 HI:3246]
[main] 100492 iterations. [F:76058 S:25721 HI:3246]
anon_vma_clone: 0000000001010000-0000000001017000 ffff8800b8705500 100073 (null) ffff8800b8bfa300 | 0000000000ff6000-0000000001017000 ffff8800b8705500 100073 (null) ffff8800b8bfa300
iriap_register_lsap: Unable to allocated LSAP!
[main] 110564 iterations. [F:83697 S:28290 HI:3246]
[main] 120601 iterations. [F:91297 S:30853 HI:3246]
trinity-c0 invoked oom-killer: gfp_mask=0x0(), order=0, oom_score_adj=500
trinity-c0 cpuset=/ mems_allowed=0
CPU: 0 PID: 29139 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
00000000000001f4 ffff8800b743fbb8 ffffffff81971b01 ffff8800b743fde0
ffff8800b896ee00 ffff8800b743fc38 ffffffff813cabd6 ffffffff83aba1a4
0000000000000206 ffffffff83aba1a0 ffff8800b743fbf0 ffffffff83295e4f
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff813cabd6>] dump_header+0x112/0x49e
[<ffffffff83295e4f>] ? _raw_spin_unlock_irqrestore+0x1f/0x40
[<ffffffff81981590>] ? ___ratelimit+0x1f0/0x3b0
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff812cfd3a>] oom_kill_process+0x4ca/0xa30
[<ffffffff810fa4de>] ? has_ns_capability_noaudit+0x4e/0x70
[<ffffffff810fa512>] ? has_capability_noaudit+0x12/0x20
[<ffffffff812cec57>] ? oom_badness+0x267/0x3b0
[<ffffffff812d0c9c>] out_of_memory+0x91c/0xd70
[<ffffffff812d0380>] ? unregister_oom_notifier+0x20/0x20
[<ffffffff812d11ac>] pagefault_out_of_memory+0xbc/0x120
[<ffffffff812d10f0>] ? out_of_memory+0xd70/0xd70
[<ffffffff81347734>] ? vma_link+0x124/0x160
[<ffffffff810c056a>] mm_fault_error+0xca/0x300
[<ffffffff8134bb5a>] ? find_vma+0xea/0x150
[<ffffffff810c0f0f>] __do_page_fault+0x76f/0x8e0
[<ffffffff810c10df>] do_page_fault+0x2f/0x80
[<ffffffff819cd773>] ? __this_cpu_preempt_check+0x13/0x20
[<ffffffff810b5b07>] do_async_page_fault+0x27/0xa0
[<ffffffff83297c88>] async_page_fault+0x28/0x30
Mem-Info:
active_anon:8579 inactive_anon:208399 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:9294 slab_unreclaimable:4154
mapped:2278 shmem:215106 pagetables:107 bounce:0
free:633306 free_pcp:1050 free_cma:0
Node 0 DMA free:13900kB min:308kB low:384kB high:460kB active_anon:112kB inactive_anon:1584kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:92kB shmem:1688kB slab_reclaimable:200kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:2211660kB min:58576kB low:73220kB high:87864kB active_anon:25988kB inactive_anon:723404kB active_file:1456kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:6768kB shmem:744256kB slab_reclaimable:31712kB slab_unreclaimable:13384kB kernel_stack:1632kB pagetables:448kB unstable:0kB bounce:0kB free_pcp:2064kB local_pcp:72kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:307804kB min:8692kB low:10864kB high:13036kB active_anon:8080kB inactive_anon:108608kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:2252kB shmem:114480kB slab_reclaimable:5264kB slab_unreclaimable:3304kB kernel_stack:1056kB pagetables:12kB unstable:0kB bounce:0kB free_pcp:2136kB local_pcp:84kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 1*4kB (M) 1*8kB (E) 2*16kB (UE) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13900kB
Node 0 DMA32: 73*4kB (UM) 25*8kB (UME) 10*16kB (UM) 6*32kB (UME) 12*64kB (UE) 6*128kB (UE) 4*256kB (UE) 3*512kB (UME) 1*1024kB (E) 5*2048kB (UME) 536*4096kB (M) = 2211660kB
Node 0 Normal: 35*4kB (UM) 60*8kB (UM) 31*16kB (UME) 12*32kB (UME) 10*64kB (UM) 8*128kB (UME) 0*256kB 1*512kB (E) 19*1024kB (UM) 7*2048kB (ME) 66*4096kB (M) = 307804kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
215616 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
[ pid ] uid tgid total_vm rss nr_ptes nr_pmds swapents oom_score_adj name
[ 1283] 65534 1283 8848 1546 17 4 0 0 trinity-main
[28199] 65534 28199 10100 3314 27 5 0 500 trinity-c3
[28938] 65534 28938 8874 1600 20 4 0 500 trinity-c2
[29130] 65534 29130 9131 1841 19 4 0 500 trinity-c1
[29139] 65534 29139 8890 1575 19 4 0 500 trinity-c0
Out of memory: Kill process 28199 (trinity-c3) score 503 or sacrifice child
Killed process 28199 (trinity-c3) total-vm:40400kB, anon-rss:4992kB, file-rss:1216kB, shmem-rss:7048kB
[main] 130602 iterations. [F:98862 S:33416 HI:3246]
vmalloc: allocation failure: 4096 bytes
trinity-c0: page allocation failure: order:0, mode:0x24000c2(GFP_KERNEL|__GFP_HIGHMEM)
CPU: 3 PID: 2489 Comm: trinity-c0 Not tainted 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
0000000000000000 ffff880119217b30 ffffffff81971b01 1ffff10023242f6a
ffffffff8347fc80 ffff880119217c48 ffffffff812daf9f 0000000041b58ab3
024000c200000001 0000000041b58ab3 ffffffff8390c98b ffffffff812dadc0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff812daf9f>] warn_alloc_failed+0x1df/0x240
[<ffffffff812dadc0>] ? zone_watermark_ok_safe+0x250/0x250
[<ffffffff8139f29e>] ? kasan_kmalloc+0x5e/0x70
[<ffffffff8139ce18>] ? kfree+0x128/0x140
[<ffffffff81361767>] ? __get_vm_area_node+0x277/0x300
[<ffffffff813651bf>] __vmalloc_node_range+0x40f/0x630
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8136547f>] vmalloc+0x4f/0x60
[<ffffffff8143f7c8>] ? setxattr+0x1c8/0x1f0
[<ffffffff8143f7c8>] setxattr+0x1c8/0x1f0
[<ffffffff8143f600>] ? vfs_setxattr+0xd0/0xd0
[<ffffffff81054d47>] ? dump_trace+0x117/0x300
[<ffffffff811e0796>] ? do_setitimer+0x336/0x540
[<ffffffff8106f356>] ? save_stack_trace+0x26/0x50
[<ffffffff81149abb>] ? preempt_count_add+0x1fb/0x280
[<ffffffff814308b6>] ? __mnt_want_write+0x166/0x250
[<ffffffff81430bbe>] ? __mnt_want_write_file+0x6e/0x90
[<ffffffff814409c3>] SyS_fsetxattr+0x103/0x160
[<ffffffff814408c0>] ? SyS_lsetxattr+0x10/0x10
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Mem-Info:
active_anon:10815 inactive_anon:275574 isolated_anon:0
active_file:467 inactive_file:43 isolated_file:0
unevictable:5 dirty:0 writeback:0 unstable:0
slab_reclaimable:9542 slab_unreclaimable:4204
mapped:5827 shmem:283762 pagetables:147 bounce:0
free:563596 free_pcp:1063 free_cma:0
Node 0 DMA free:13900kB min:308kB low:384kB high:460kB active_anon:112kB inactive_anon:1584kB active_file:56kB inactive_file:4kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:15992kB managed:15908kB mlocked:0kB dirty:0kB writeback:0kB mapped:152kB shmem:1688kB slab_reclaimable:200kB slab_unreclaimable:48kB kernel_stack:0kB pagetables:4kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 2942 3379 3379
Node 0 DMA32 free:1970444kB min:58576kB low:73220kB high:87864kB active_anon:32856kB inactive_anon:956780kB active_file:1456kB inactive_file:160kB unevictable:20kB isolated(anon):0kB isolated(file):0kB present:3129212kB managed:3017080kB mlocked:20kB dirty:0kB writeback:0kB mapped:18184kB shmem:981608kB slab_reclaimable:32592kB slab_unreclaimable:13448kB kernel_stack:1600kB pagetables:500kB unstable:0kB bounce:0kB free_pcp:2204kB local_pcp:188kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 436 436
Node 0 Normal free:270040kB min:8692kB low:10864kB high:13036kB active_anon:10292kB inactive_anon:143932kB active_file:356kB inactive_file:8kB unevictable:0kB isolated(anon):0kB isolated(file):0kB present:1048576kB managed:447284kB mlocked:0kB dirty:0kB writeback:0kB mapped:4972kB shmem:151752kB slab_reclaimable:5376kB slab_unreclaimable:3320kB kernel_stack:1120kB pagetables:84kB unstable:0kB bounce:0kB free_pcp:2048kB local_pcp:112kB free_cma:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 1*4kB (M) 1*8kB (E) 2*16kB (UE) 3*32kB (UME) 1*64kB (U) 1*128kB (U) 3*256kB (UME) 1*512kB (E) 2*1024kB (UE) 1*2048kB (E) 2*4096kB (M) = 13900kB
Node 0 DMA32: 26*4kB (UM) 33*8kB (UME) 16*16kB (UME) 13*32kB (UME) 10*64kB (UM) 4*128kB (UM) 3*256kB (ME) 3*512kB (UME) 2*1024kB (ME) 3*2048kB (UE) 478*4096kB (M) = 1970576kB
Node 0 Normal: 42*4kB (UM) 8*8kB (UM) 3*16kB (U) 3*32kB (UM) 8*64kB (UM) 7*128kB (UME) 0*256kB 2*512kB (ME) 3*1024kB (UM) 1*2048kB (E) 64*4096kB (M) = 270072kB
Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
284272 total pagecache pages
0 pages in swap cache
Swap cache stats: add 0, delete 0, find 0/0
Free swap = 0kB
Total swap = 0kB
1048445 pages RAM
0 pages HighMem/MovableOnly
178377 pages reserved
warning: process `trinity-c2' used the deprecated sysctl system call with 1970170188.
[main] 140644 iterations. [F:106453 S:35983 HI:3246 STALLED:1]
anon_vma_clone: 00007f77982d0000-00007f77983d0000 ffff8800b8956900 100173 (null) ffff8800b8668300 | 00007f77983d0000-00007f77985d1000 ffff8800b8956900 100173 (null) ffff8800b8668300
==================================================================
BUG: KASAN: use-after-free in mprotect_fixup+0x523/0x5a0 at addr ffff8800b8949b20
Read of size 8 by task trinity-c0/16769
=============================================================================
BUG vm_area_struct (Not tainted): kasan: bad access detected
-----------------------------------------------------------------------------
Disabling lock debugging due to kernel taint
INFO: Allocated in __split_vma.isra.34+0x161/0x730 age=753 cpu=3 pid=16769
___slab_alloc+0x480/0x4b0
__slab_alloc.isra.57+0x56/0x80
kmem_cache_alloc+0x1af/0x1e0
__split_vma.isra.34+0x161/0x730
split_vma+0x7f/0xc0
mprotect_fixup+0x3e8/0x5a0
SyS_mprotect+0x397/0x790
do_syscall_64+0x19c/0x410
return_from_SYSCALL_64+0x0/0x6a
INFO: Freed in vma_adjust+0x8e6/0x1390 age=32 cpu=3 pid=16769
__slab_free+0x17a/0x250
kmem_cache_free+0x19a/0x1b0
vma_adjust+0x8e6/0x1390
vma_merge+0x7c7/0xc20
mprotect_fixup+0x1b6/0x5a0
SyS_mprotect+0x397/0x790
do_syscall_64+0x19c/0x410
return_from_SYSCALL_64+0x0/0x6a
INFO: Slab 0xffffea0002e25200 objects=16 used=15 fp=0xffff8800b8949b20 flags=0x200000000004080
INFO: Object 0xffff8800b8949b20 @offset=6944 fp=0x (null)
Bytes b4 ffff8800b8949b10: 00 00 00 00 b4 3b 00 00 85 36 27 00 01 00 00 00 .....;...6'.....
Object ffff8800b8949b20: 00 00 00 00 00 00 00 00 00 00 3d 98 77 7f 00 00 ..........=.w...
Object ffff8800b8949b30: 70 91 7f b8 00 88 ff ff f0 61 b7 ba 00 88 ff ff p........a......
Object ffff8800b8949b40: 90 91 7f b8 00 88 ff ff 00 00 00 00 00 00 00 00 ................
Object ffff8800b8949b50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
[main] kernel beObject ffff8800b8949b60: 00 69 95 b8 00 88 ff ff 25 00 00 00 00 00 00 80 .i......%.......
Object ffff8800b8949b70: 72 01 10 00 00 00 00 00 00 00 00 00 00 00 00 00 r...............
came tainted! (3Object ffff8800b8949b80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
Object ffff8800b8949b90: 00 00 00 00 00 00 00 00 98 9b 94 b8 00 88 ff ff ................
Object ffff8800b8949ba0: 98 9b 94 b8 00 88 ff ff 00 00 00 00 00 00 00 00 ................
2/0) Last seed wObject ffff8800b8949bb0: 00 00 00 00 00 00 00 00 d1 82 79 f7 07 00 00 00 ..........y.....
as 96160059
Object ffff8800b8949bc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
Object ffff8800b8949bd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
CPU: 3 PID: 16769 Comm: trinity-c0 Tainted: G B 4.7.0-rc7+ #33
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
ffffea0002e25200 ffff8800b75afc78 ffffffff81971b01 ffff88011a816640
ffff8800b8949b20 ffff8800b75afca8 ffffffff81397f4d ffff88011a816640
ffffea0002e25200 ffff8800b8949b20 0000000000000000 ffff8800b75afcd0
Call Trace:
[<ffffffff81971b01>] dump_stack+0x65/0x84
[<ffffffff81397f4d>] print_trailer+0x10d/0x1a0
[<ffffffff8139bacf>] object_err+0x2f/0x40
[<ffffffff8139fd8f>] kasan_report_error+0x21f/0x520
[<ffffffff813a01ce>] __asan_report_load8_noabort+0x3e/0x40
[<ffffffff81354413>] ? mprotect_fixup+0x523/0x5a0
[<ffffffff81354413>] mprotect_fixup+0x523/0x5a0
[<ffffffff81354827>] SyS_mprotect+0x397/0x790
[<ffffffff81354490>] ? mprotect_fixup+0x5a0/0x5a0
[<ffffffff81002d27>] ? syscall_trace_enter_phase2+0x227/0x3e0
[<ffffffff81354490>] ? mprotect_fixup+0x5a0/0x5a0
[<ffffffff8100334c>] do_syscall_64+0x19c/0x410
[<ffffffff812c0e88>] ? context_tracking_enter+0x18/0x20
[<ffffffff83296525>] entry_SYSCALL64_slow_path+0x25/0x25
Memory state around the buggy address:
ffff8800b8949a00: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
ffff8800b8949a80: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
>ffff8800b8949b00: fc fc fc fc fb fb fb fb fb fb fb fb fb fb fb fb
^
ffff8800b8949b80: fb fb fb fb fb fb fb fb fb fb fb fb fc fc fc fc
ffff8800b8949c00: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
reply other threads:[~2016-07-24 11:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5794A0C3.9060007@oracle.com \
--to=vegard.nossum@oracle.com \
--cc=chianglungyu@gmail.com \
--cc=koct9i@gmail.com \
--cc=linux-mm@kvack.org \
--cc=vbabka@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.