modified libs/wine/mmap.c:mmap_reserve like that: static inline int mmap_reserve( void *addr, size_t size ) { void *ptr; int flags = MAP_PRIVATE | MAP_ANON | MAP_NORESERVE; printf("mmapreserve:%p\n",addr); #ifdef MAP_TRYFIXED flags |= MAP_TRYFIXED; #elif defined(__APPLE__) return try_mmap_fixed( addr, size, PROT_NONE, flags, get_fdzero(), 0 ); #endif ptr = mmap( addr, size, PROT_NONE, flags, get_fdzero(), 0 ); printf("got:%p\n",ptr); if (ptr != addr && ptr != (void *)-1) munmap( ptr, size ); return (ptr == addr); } pathtowine> LIBRARY_PATH=$LIBRARY_PATH:pathtowine/libs/wine/ strace loader/wine cmd [ 2859] _kern_image_relocated(0xe489) (442 us) [ 2859] _kern_set_area_protection(0x2b497, 0x15) = 0x00000000 No error (22 us) [ 2859] _kern_set_area_protection(0x2b499, 0x15) = 0x00000000 No error (38 us) [ 2859] _kern_set_area_protection(0x2b49c, 0x15) = 0x00000000 No error (186 us) [ 2859] _kern_get_system_info(0x7ffedc84, 0x1fc) = 0x00000000 No error (3 us) [ 2859] _kern_reserve_address_range([0x18000000], 0x1, 0x48000000) = 0x00000000 No error (3 us) [ 2859] _kern_create_area("heap", 0x432bd8, 0x1, 0x40000, 0x0, 0x33) = 0x0002b4a0 (26 us) [ 2859] _kern_getrlimit(0x4, 0x7ffedaf4) = 0x00000000 (1 us) [ 2859] _kern_setrlimit(0x4, 0x7ffedaf4) = 0x00000000 (244 us) [ 2859] _kern_getrlimit(0x6, 0x7ffedae4) = 0x80000005 (0 us) [ 2859] _kern_getcwd(0x1802d050, 0x100) = 0x00000000 No error (16 us) [ 2859] _kern_get_image_info(0xe48a, 0x7ffed650, 0x43c) = 0x00000000 No error (2 us) [ 2859] _kern_read_stat(0xffffffff, "/HaikuWine/wine.new/loader/wineserver", true, 0x7ffeda74, 0x58) = 0x80006003 No such file or directory (29 us) [ 2859] _kern_read_stat(0xffffffff, "/HaikuWine/wine.new/server/wineserver", true, 0x7ffeda74, 0x58) = 0x00000000 No error (28 us) [ 2859] _kern_read_stat(0xffffffff, "/HaikuWine/wine.new/dlls/ntdll/ntdll.dll.so", true, 0x7ffeda74, 0x58) = 0x00000000 No error (81 us) [ 2859] _kern_read_stat(0x1, (nil), false, 0x7ffec284, 0x58) = 0x00000000 No error (2 us) [ 2859] _kern_ioctl(0x1, TCGETA, 0x7ffec22c, 0x20) = 0x00000000 No error (2 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffeda94, 0x2, 0x3fef0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x80000000 (1000885 us) got:0xffffffff [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xf) = 0x0000000f (20 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffeda64, 0x2, 0x1ff70000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x80000000 (1000862 us) got:0xffffffff [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xf) = 0x0000000f (24 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffeda34, 0x2, 0xffb0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x80000000 (1000877 us) got:0xffffffff [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xf) = 0x0000000f (20 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffeda04, 0x2, 0x7fd0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4a4 (11 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x7fd0000) = 0x00000000 No error (8 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed9d4, 0x2, 0x3fe0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4a5 (5 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x3fe0000) = 0x00000000 No error (9 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed9a4, 0x2, 0x1ff0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4a6 (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x1ff0000) = 0x00000000 No error (8 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (16 us) [ 2859] _kern_map_file("mmap area", 0x7ffed974, 0x2, 0xff0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4a7 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0xff0000) = 0x00000000 No error (19 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (17 us) [ 2859] _kern_map_file("mmap area", 0x7ffed944, 0x2, 0x7f0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4a8 (71 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x7f0000) = 0x00000000 No error (22 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed914, 0x2, 0x3f0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4a9 (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x3f0000) = 0x00000000 No error (8 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (17 us) [ 2859] _kern_map_file("mmap area", 0x7ffed8e4, 0x2, 0x1f0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4aa (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x1f0000) = 0x00000000 No error (20 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed8b4, 0x2, 0xf0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ab (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0xf0000) = 0x00000000 No error (7 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed884, 0x2, 0x70000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ac (6 us) got:0x127000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x127000, 0x70000) = 0x00000000 No error (7 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed854, 0x2, 0x30000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ad (6 us) got:0x127000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x127000, 0x30000) = 0x00000000 No error (8 us) mmapreserve:0x110000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed824, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ae (6 us) got:0x127000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (17 us) [ 2859] _kern_unmap_memory(0x127000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x120000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed814, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4af (6 us) got:0x127000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x127000, 0x20000) = 0x00000000 No error (6 us) mmapreserve:0x120000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7e4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b0 (6 us) got:0x127000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x127000, 0x10000) = 0x00000000 No error (6 us) mmapreserve:0x130000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b1 (5 us) got:0x130000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) mmapreserve:0x140000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (16 us) [ 2859] _kern_map_file("mmap area", 0x7ffed844, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b2 (7 us) got:0x140000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) mmapreserve:0x180000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (18 us) [ 2859] _kern_map_file("mmap area", 0x7ffed874, 0x2, 0x80000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b3 (13 us) got:0x180000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (6 us) mmapreserve:0x200000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed8a4, 0x2, 0x100000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b4 (17 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x100000) = 0x00000000 No error (10 us) mmapreserve:0x200000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed874, 0x2, 0x80000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b5 (15 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x80000) = 0x00000000 No error (12 us) mmapreserve:0x200000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed844, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b6 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (78 us) mmapreserve:0x200000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed814, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b7 (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (12 us) mmapreserve:0x200000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (6 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7e4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b8 (12 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (6 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (67 us) mmapreserve:0x210000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4b9 (9 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (20 us) mmapreserve:0x220000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (15 us) [ 2859] _kern_map_file("mmap area", 0x7ffed804, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ba (19 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (20 us) mmapreserve:0x220000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4bb (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (16 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (12 us) mmapreserve:0x230000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4bc (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (9 us) mmapreserve:0x240000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed834, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4bd (15 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (17 us) mmapreserve:0x240000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (17 us) [ 2859] _kern_map_file("mmap area", 0x7ffed804, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4be (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (10 us) mmapreserve:0x240000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4bf (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (19 us) mmapreserve:0x250000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (16 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c0 (19 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (21 us) mmapreserve:0x260000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c1 (16 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (17 us) mmapreserve:0x260000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c2 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (17 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (19 us) mmapreserve:0x270000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (27 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c3 (16 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (6 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (11 us) mmapreserve:0x280000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed864, 0x2, 0x80000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c4 (84 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x80000) = 0x00000000 No error (9 us) mmapreserve:0x280000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (6 us) [ 2859] _kern_map_file("mmap area", 0x7ffed834, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c5 (9 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (20 us) mmapreserve:0x280000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (6 us) [ 2859] _kern_map_file("mmap area", 0x7ffed804, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c6 (19 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (15 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (17 us) mmapreserve:0x280000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (16 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c7 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x290000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c8 (14 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x2a0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4c9 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (20 us) mmapreserve:0x2a0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ca (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x2b0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4cb (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x2c0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed824, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4cc (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (17 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (8 us) mmapreserve:0x2c0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (6 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4cd (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (8 us) mmapreserve:0x2c0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ce (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (19 us) mmapreserve:0x2d0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4cf (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (18 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x2e0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (17 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7e4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d0 (19 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (20 us) mmapreserve:0x2e0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d1 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (16 us) mmapreserve:0x2f0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7a4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d2 (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (6 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (9 us) mmapreserve:0x300000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed8d4, 0x2, 0x200000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d3 (20 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x200000) = 0x00000000 No error (9 us) mmapreserve:0x300000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed8a4, 0x2, 0x100000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d4 (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x100000) = 0x00000000 No error (14 us) mmapreserve:0x300000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed874, 0x2, 0x80000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d5 (26 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x80000) = 0x00000000 No error (23 us) mmapreserve:0x300000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (16 us) [ 2859] _kern_map_file("mmap area", 0x7ffed844, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d6 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (35 us) mmapreserve:0x300000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed814, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d7 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (14 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (7 us) mmapreserve:0x300000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7e4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d8 (15 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x310000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4d9 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x320000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed804, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4da (5 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (8 us) mmapreserve:0x320000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4db (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x330000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4dc (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (19 us) mmapreserve:0x340000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (6 us) [ 2859] _kern_map_file("mmap area", 0x7ffed834, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4dd (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (10 us) mmapreserve:0x340000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed804, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4de (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (17 us) mmapreserve:0x340000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (6 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4df (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x350000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e0 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x360000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e1 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (7 us) mmapreserve:0x360000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (6 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e2 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (19 us) mmapreserve:0x370000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (35 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e3 (10 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (16 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (12 us) mmapreserve:0x380000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed864, 0x2, 0x80000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e4 (8 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x80000) = 0x00000000 No error (25 us) mmapreserve:0x380000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed834, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e5 (5 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (8 us) mmapreserve:0x380000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed804, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e6 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (9 us) mmapreserve:0x380000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e7 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (21 us) mmapreserve:0x390000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e8 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x3a0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4e9 (14 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (7 us) mmapreserve:0x3a0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ea (5 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (13 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (19 us) mmapreserve:0x3b0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4eb (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x3c0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed824, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ec (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (7 us) mmapreserve:0x3c0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ed (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (7 us) mmapreserve:0x3c0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ee (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (9 us) mmapreserve:0x3d0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ef (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x3e0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7e4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f0 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (7 us) mmapreserve:0x3e0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f1 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x3f0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7a4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f2 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x400000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed894, 0x2, 0x100000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f3 (5 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x100000) = 0x00000000 No error (7 us) mmapreserve:0x400000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed864, 0x2, 0x80000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f4 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x80000) = 0x00000000 No error (14 us) mmapreserve:0x400000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed834, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f5 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (7 us) mmapreserve:0x400000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed804, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f6 (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (8 us) mmapreserve:0x400000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7d4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f7 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x410000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f8 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (7 us) mmapreserve:0x420000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4f9 (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (8 us) mmapreserve:0x420000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4fa (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (18 us) mmapreserve:0x430000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4fb (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (24 us) mmapreserve:0x440000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed824, 0x2, 0x40000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4fc (18 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x40000) = 0x00000000 No error (9 us) mmapreserve:0x440000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7f4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4fd (7 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (17 us) [ 2859] _kern_unmap_memory(0x453000, 0x20000) = 0x00000000 No error (20 us) mmapreserve:0x440000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7c4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4fe (6 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (8 us) mmapreserve:0x450000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7b4, 0x2, 0x10000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b4ff (28 us) got:0x453000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) [ 2859] _kern_unmap_memory(0x453000, 0x10000) = 0x00000000 No error (30 us) mmapreserve:0x460000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed7e4, 0x2, 0x20000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b500 (6 us) got:0x460000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (4 us) mmapreserve:0x480000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed854, 0x2, 0x80000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b501 (6 us) got:0x480000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) mmapreserve:0x500000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed904, 0x2, 0x400000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b502 (6 us) got:0x500000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) mmapreserve:0x900000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x15) = 0x00000015 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed934, 0x2, 0x800000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b503 (6 us) got:0x900000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xd) = 0x0000000d (5 us) mmapreserve:0x1100000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x16) = 0x00000016 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed964, 0x2, 0x1000000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b504 (6 us) got:0x1100000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xe) = 0x0000000e (17 us) mmapreserve:0x2100000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x16) = 0x00000016 (5 us) [ 2859] _kern_map_file("mmap area", 0x7ffed994, 0x2, 0x1ff0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b505 (7 us) got:0x2100000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xe) = 0x0000000e (5 us) mmapreserve:0x40f0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x16) = 0x00000016 (4 us) [ 2859] _kern_map_file("mmap area", 0x7ffed9c4, 0x2, 0x3ff0000, 0x30, 0x1, true, 0xffffffff, 0x0) = 0x0002b506 (13 us) got:0x40f0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0xe) = 0x0000000e (5 us) mmapreserve:0x80e0000 [ 2859] _kern_write(0x1, 0xffffffffffffffff, 0x18037240, 0x16) = 0x00000016 (4 us) Ctrl+C