CRaC / docs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jdk.internal.crac.mirror.impl.CheckpointOpenResourceException: FD fd=28 type=unknown path=anon_inode:[eventpoll]

gluo1130 opened this issue · comments

How to solve the error jdk.internal.crac.mirror.impl.CheckpointOpenResourceException: FD fd=28 type=unknown path=anon_inode:[eventpoll]

My pom.xml configuration is as follows:

 <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.2.0</version>
        <relativePath/> 
</parent>

When currently planning to add a checkpoint, the following exception was thrown, and the stack is as follows:

zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/bin/jcmd cloudnative-consumer-2023.0.0-SNAPSHOT.jar JDK.checkpoint
5708:
An exception during a checkpoint operation:
jdk.internal.crac.mirror.CheckpointException
	Suppressed: java.nio.channels.IllegalSelectorException
		at java.base/sun.nio.ch.EPollSelectorImpl.beforeCheckpoint(EPollSelectorImpl.java:395)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.invokeBeforeCheckpoint(AbstractContext.java:43)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.beforeCheckpoint(AbstractContext.java:58)
		at java.base/jdk.internal.crac.mirror.impl.BlockingOrderedContext.beforeCheckpoint(BlockingOrderedContext.java:64)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.invokeBeforeCheckpoint(AbstractContext.java:43)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.beforeCheckpoint(AbstractContext.java:58)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore1(Core.java:153)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:286)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestoreInternal(Core.java:299)
	Suppressed: jdk.internal.crac.mirror.impl.CheckpointOpenResourceException: FD fd=28 type=unknown path=anon_inode:[eventpoll]
		at java.base/jdk.internal.crac.mirror.Core.translateJVMExceptions(Core.java:117)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore1(Core.java:188)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:286)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestoreInternal(Core.java:299)
	Suppressed: jdk.internal.crac.mirror.impl.CheckpointOpenResourceException: FD fd=29 type=unknown path=anon_inode:[eventfd]
		at java.base/jdk.internal.crac.mirror.Core.translateJVMExceptions(Core.java:117)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore1(Core.java:188)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:286)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestoreInternal(Core.java:299)

You should see a log message suggesting to add -Djdk.crac.collect-fd-stacktraces=true - this will point to the stack trace where the FD is created. With this information you can raise a request to springboot to fix the CRaC support (assuming that this is opened from springboot libraries).

You should see a log message suggesting to add -Djdk.crac.collect-fd-stacktraces=true - this will point to the stack trace where the FD is created. With this information you can raise a request to springboot to fix the CRaC support (assuming that this is opened from springboot libraries).

I added -Djdk.crac.collect-fd-stacktraces=true and the startup command and jcmd are as follows

zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/bin/java -Djdk.crac.resource-policies=crac.yaml  -Djdk.crac.collect-fd-stacktraces=true  -XX:CRaCCheckpointTo=./tmp_checkpoint -jar 3.2.0/cloudnative-consumer-2023.0.0-SNAPSHOT.jar > log/jdk-start-zulu.log &

zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/bin/jcmd cloudnative-consumer-2023.0.0-SNAPSHOT.jar JDK.checkpoint

Among them crac.yaml configuration

type: socket
localAddress: *
action: ignore
---
type: file
path: /opt
action: ignore
---
type: file
path: /tmp
action: ignore
---
type: file
path: log/*
action: reopen
---
type: file
path: log/formula/*
action: reopen
---
type: file
path: *
action: reopen
---
type: pipe
action: ignore

An error is still reported when executing jcmd. The error log is as follows:

2024-04-16T16:30:29.284+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] jdk.crac                                 : Starting checkpoint
2024-04-16T16:30:29.292+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] c.b.c.s.transport.netty.NettyServer      : Shutdown starlight server gracefully start
2024-04-16T16:30:29.292+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] c.b.c.s.transport.netty.NettyServer      : Notify server shutting down to clients begin
2024-04-16T16:30:29.292+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] c.b.c.s.transport.netty.NettyServer      : Notify server shutting down end, cost 0 clients 0
2024-04-16T16:30:29.292+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] c.b.c.s.transport.netty.NettyServer      : Wait for quiet period pass 10s
2024-04-16T16:30:29.292+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [egisterWorker-1] c.b.c.s.s.s.r.StarlightRegisterListener  : Deregister server instance null:8666 start
2024-04-16T16:30:29.292+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [egisterWorker-1] c.b.c.g.d.r.GravityServiceRegistry       : Deregistering service cloudnative-consumer, host:10.25.**:8666
2024-04-16T16:30:29.293+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [egisterWorker-1] c.b.c.gravity.client.beat.BeatScheduler  : Stop heartbeat task for endpoint id: cpdinf-cloudnative-consumer-10.25.**-8666
2024-04-16T16:30:36.613+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [egisterWorker-1] c.b.c.g.d.r.GravityServiceRegistry       : Deregistered service cloudnative-consumer, host:10.25.**:8666
2024-04-16T16:30:36.613+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [egisterWorker-1] c.b.c.s.s.s.r.StarlightRegisterListener  : Deregister server instance null:8666 success
2024-04-16T16:30:39.293+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] c.b.c.s.transport.netty.NettyServer      : Netty pending tasks num is 0
2024-04-16T16:30:39.293+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] c.b.c.s.transport.netty.NettyServer      : NettyServer has processed all requests, gracefully shutdown.
2024-04-16T16:30:39.295+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] c.b.c.s.transport.netty.NettyServer      : Shutdown starlight server gracefully end
JVM: invalid info for restore provided: queued code -1
2024-04-16T16:30:39.601+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] o.s.c.support.DefaultLifecycleProcessor  : Restarting Spring-managed lifecycle beans after JVM restore
2024-04-16T16:30:39.648+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port 8080 (http) with context path ''
2024-04-16T16:30:39.657+08:00  INFO [cpdinf-cloudnative-consumer,,,] 24480 --- [cloudnative-consumer] [Attach Listener] o.s.c.support.DefaultLifecycleProcessor  : Spring-managed lifecycle restart completed (restored JVM running for -1 ms)
An exception during a checkpoint operation:
jdk.internal.crac.mirror.CheckpointException
	Suppressed: java.lang.RuntimeException: Native checkpoint failed.
		at java.base/jdk.internal.crac.mirror.Core.translateJVMExceptions(Core.java:109)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore1(Core.java:188)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:286)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestoreInternal(Core.java:299)

The start window reports an error when executing jcmd

CRIU failed with exit code 1 - check /root/luogang05/crac/./tmp_checkpoint/dump4.log
Command: /root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/criu dump -t 41314 -D ./tmp_checkpoint --shell-job -v4 -o dump4.log

The content of dump4.log is as follows

(00.000056) Version: 3.17.1-crac (gitid b20-11-g6a0d7cf+1)
(00.000076) Running on luogang05.bcc-gzbh.baidu.com Linux 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
(00.000085) File /run/criu.kdat does not exist
(00.000101) sockets: Probing sock diag modules
(00.000136) sockets: Done probing
(00.000155) Pagemap is fully functional
(00.000179) Found anon-shmem device at 4
(00.000192) Hugetlb size 2 Mb is supported but cannot get dev's number
(00.000200) Hugetlb size 1024 Mb is supported but cannot get dev's number
(00.000205) Reset 42446's dirty tracking
(00.000239)  ... done
(00.000260) Dirty track supported on kernel
(00.000305) Found task size of 7ffffffff000
(00.002832) Warn  (criu/net.c:3430): Unable to get tun network namespace
(00.002854) Warn  (criu/sk-unix.c:224): unix: Unable to open a socket file: Bad address
(00.004176) Restoring netdev veth idx 10
(00.004443) Dumping netns links
(00.004491) 	LD: Got link 1, type 772
(00.004493) 	LD: Got link 10, type 1
(00.004837) vdso: Parsing at 7ffcdc9fa000 7ffcdc9fc000
(00.004844) vdso: PT_LOAD p_vaddr: ffffffffff700000
(00.004846) vdso: DT_HASH: ffffffffff700120
(00.004848) vdso: DT_STRTAB: ffffffffff700250
(00.004849) vdso: DT_SYMTAB: ffffffffff700160
(00.004850) vdso: DT_STRSZ: 5e
(00.004852) vdso: DT_SYMENT: 18
(00.004853) vdso: nbucket 3 nchain a bucket 7ffcdc9fa128 chain 7ffcdc9fa134
(00.004859) vdso: rt [vdso] 7ffcdc9fa000-7ffcdc9fc000 [vvar] ffffffffffffffff-fffffffffffffffe
(00.005090) Warn  (criu/net.c:3430): Unable to get socket network namespace
(00.005112) cpu: x86_family 6 x86_vendor_id GenuineIntel x86_model_id Intel(R) Xeon(R) Gold 6271C CPU @ 2.60GHz
(00.005117) cpu: fpu: xfeatures_mask 0x2f5 xsave_size 2696 xsave_size_max 2696 xsaves_size 2568
(00.005128) cpu: fpu: x87 floating point registers     xstate_offsets      0 / 0      xstate_sizes    160 / 160
(00.005131) cpu: fpu: AVX registers                    xstate_offsets    576 / 576    xstate_sizes    256 / 256
(00.005133) cpu: fpu: MPX CSR                          xstate_offsets   1024 / 832    xstate_sizes     64 / 64
(00.005136) cpu: fpu: AVX-512 opmask                   xstate_offsets   1088 / 896    xstate_sizes     64 / 64
(00.005138) cpu: fpu: AVX-512 Hi256                    xstate_offsets   1152 / 960    xstate_sizes    512 / 512
(00.005140) cpu: fpu: AVX-512 ZMM_Hi256                xstate_offsets   1664 / 1472   xstate_sizes   1024 / 1024
(00.005142) cpu: fpu: Protection Keys User registers   xstate_offsets   2688 / 2496   xstate_sizes      8 / 8
(00.005211) The new mount API (fsopen, fsmount) isn't supported
(00.005240) Warn  (criu/kerndat.c:1349): Can't get pidfd
(00.005271) Warn  (criu/kerndat.c:1466): CRIU was built without libnftables support
(00.005359) No MOVE_MOUNT_SET_GROUP kernel feature
(00.008959) No openat2 syscall support
(00.008966) rseq syscall isn't supported
(00.009238) ptrace(PTRACE_GET_RSEQ_CONFIGURATION) is not supported
(00.009314) Adjust mmap_min_addr 0x1000 -> 0x10000
(00.009318) Found mmap_min_addr 0x10000
(00.009324) files stat: fs/nr_open 1048576
(00.009326) skip kerndat_save_cache
(00.009332) ========================================
(00.009335) Dumping processes (pid: 41314)
(00.009337) ========================================
(00.009341) rlimit: RLIMIT_NOFILE unlimited for self
(00.009350) Running pre-dump scripts
(00.009363) irmap: Searching irmap cache in work dir
(00.009368) No irmap-cache image
(00.009371) irmap: Searching irmap cache in parent
(00.009374) No parent images directory provided
(00.009376) irmap: No irmap cache
(00.009379) cpu: fpu:1 fxsr:1 xsave:1 xsaveopt:1 xsavec:1 xgetbv1:1 xsaves:1
(00.009453) cg-prop: Parsing controller "cpu"
(00.009458) cg-prop: 	Strategy "replace"
(00.009461) cg-prop: 	Property "cpu.shares"
(00.009465) cg-prop: 	Property "cpu.cfs_period_us"
(00.009467) cg-prop: 	Property "cpu.cfs_quota_us"
(00.009469) cg-prop: 	Property "cpu.rt_period_us"
(00.009471) cg-prop: 	Property "cpu.rt_runtime_us"
(00.009473) cg-prop: Parsing controller "memory"
(00.009475) cg-prop: 	Strategy "replace"
(00.009481) cg-prop: 	Property "memory.limit_in_bytes"
(00.009483) cg-prop: 	Property "memory.memsw.limit_in_bytes"
(00.009485) cg-prop: 	Property "memory.swappiness"
(00.009486) cg-prop: 	Property "memory.soft_limit_in_bytes"
(00.009488) cg-prop: 	Property "memory.move_charge_at_immigrate"
(00.009490) cg-prop: 	Property "memory.oom_control"
(00.009492) cg-prop: 	Property "memory.use_hierarchy"
(00.009494) cg-prop: 	Property "memory.kmem.limit_in_bytes"
(00.009496) cg-prop: 	Property "memory.kmem.tcp.limit_in_bytes"
(00.009497) cg-prop: Parsing controller "cpuset"
(00.009499) cg-prop: 	Strategy "replace"
(00.009501) cg-prop: 	Property "cpuset.cpus"
(00.009503) cg-prop: 	Property "cpuset.mems"
(00.009505) cg-prop: 	Property "cpuset.memory_migrate"
(00.009506) cg-prop: 	Property "cpuset.cpu_exclusive"
(00.009508) cg-prop: 	Property "cpuset.mem_exclusive"
(00.009510) cg-prop: 	Property "cpuset.mem_hardwall"
(00.009512) cg-prop: 	Property "cpuset.memory_spread_page"
(00.009513) cg-prop: 	Property "cpuset.memory_spread_slab"
(00.009515) cg-prop: 	Property "cpuset.sched_load_balance"
(00.009517) cg-prop: 	Property "cpuset.sched_relax_domain_level"
(00.009519) cg-prop: Parsing controller "blkio"
(00.009521) cg-prop: 	Strategy "replace"
(00.009523) cg-prop: 	Property "blkio.weight"
(00.009524) cg-prop: Parsing controller "freezer"
(00.009526) cg-prop: 	Strategy "replace"
(00.009528) cg-prop: Parsing controller "perf_event"
(00.009531) cg-prop: 	Strategy "replace"
(00.009532) cg-prop: Parsing controller "net_cls"
(00.009534) cg-prop: 	Strategy "replace"
(00.009535) cg-prop: 	Property "net_cls.classid"
(00.009537) cg-prop: Parsing controller "net_prio"
(00.009539) cg-prop: 	Strategy "replace"
(00.009540) cg-prop: 	Property "net_prio.ifpriomap"
(00.009542) cg-prop: Parsing controller "pids"
(00.009543) cg-prop: 	Strategy "replace"
(00.009545) cg-prop: 	Property "pids.max"
(00.009546) cg-prop: Parsing controller "devices"
(00.009548) cg-prop: 	Strategy "replace"
(00.009550) cg-prop: 	Property "devices.list"
(00.009589) Preparing image inventory (version 1)
(00.009614) Add pid ns 1 pid 42446
(00.009620) Add net ns 2 pid 42446
(00.009625) Add ipc ns 3 pid 42446
(00.009631) Add uts ns 4 pid 42446
(00.009634) Add time ns 5 pid 42446
(00.009639) Add mnt ns 6 pid 42446
(00.009644) Add user ns 7 pid 42446
(00.009647) Add cgroup ns 8 pid 42446
(00.009650) cg: Dumping cgroups for 42446
(00.009667) cg:  `- New css ID 1
(00.009669) cg:     `- [blkio] -> [/] [0]
(00.009671) cg:     `- [cpuacct,cpu] -> [/] [0]
(00.009672) cg:     `- [cpuset] -> [/] [0]
(00.009674) cg:     `- [devices] -> [/] [0]
(00.009676) cg:     `- [freezer] -> [/] [0]
(00.009678) cg:     `- [hugetlb] -> [/] [0]
(00.009679) cg:     `- [memory] -> [/] [0]
(00.009681) cg:     `- [name=systemd] -> [/user.slice/user-0.slice/session-5.scope] [0]
(00.009683) cg:     `- [net_prio,net_cls] -> [/] [0]
(00.009685) cg:     `- [perf_event] -> [/] [0]
(00.009686) cg:     `- [pids] -> [/] [0]
(00.009688) cg: Set 1 is criu one
(00.009700) Detected cgroup V1 freezer
(00.009767) Seized task 41314, state 1
(00.009772) seccomp: Collected tid_real 41314 mode 0
(00.009865) 	Seizing 41314's 41315 thread
(00.009930) seccomp: Collected tid_real 41315 mode 0
(00.009934) 	Seizing 41314's 41316 thread
(00.009984) seccomp: Collected tid_real 41316 mode 0
(00.009987) 	Seizing 41314's 41317 thread
(00.010034) seccomp: Collected tid_real 41317 mode 0
(00.010036) 	Seizing 41314's 41318 thread
(00.010082) seccomp: Collected tid_real 41318 mode 0
(00.010085) 	Seizing 41314's 41319 thread
(00.010131) seccomp: Collected tid_real 41319 mode 0
(00.010135) 	Seizing 41314's 41320 thread
(00.010183) seccomp: Collected tid_real 41320 mode 0
(00.010186) 	Seizing 41314's 41321 thread
(00.010234) seccomp: Collected tid_real 41321 mode 0
(00.010238) 	Seizing 41314's 41322 thread
(00.010287) seccomp: Collected tid_real 41322 mode 0
(00.010290) 	Seizing 41314's 41323 thread
(00.010334) seccomp: Collected tid_real 41323 mode 0
(00.010337) 	Seizing 41314's 41324 thread
(00.010382) seccomp: Collected tid_real 41324 mode 0
(00.010392) 	Seizing 41314's 41325 thread
(00.010444) seccomp: Collected tid_real 41325 mode 0
(00.010448) 	Seizing 41314's 41326 thread
(00.010497) seccomp: Collected tid_real 41326 mode 0
(00.010500) 	Seizing 41314's 41327 thread
(00.010547) seccomp: Collected tid_real 41327 mode 0
(00.010549) 	Seizing 41314's 41328 thread
(00.010596) seccomp: Collected tid_real 41328 mode 0
(00.010599) 	Seizing 41314's 41329 thread
(00.010649) seccomp: Collected tid_real 41329 mode 0
(00.010653) 	Seizing 41314's 41330 thread
(00.010699) seccomp: Collected tid_real 41330 mode 0
(00.010701) 	Seizing 41314's 41331 thread
(00.010750) seccomp: Collected tid_real 41331 mode 0
(00.010753) 	Seizing 41314's 41332 thread
(00.010807) seccomp: Collected tid_real 41332 mode 0
(00.010810) 	Seizing 41314's 41333 thread
(00.010859) seccomp: Collected tid_real 41333 mode 0
(00.010861) 	Seizing 41314's 41335 thread
(00.010920) seccomp: Collected tid_real 41335 mode 0
(00.010923) 	Seizing 41314's 41366 thread
(00.010969) seccomp: Collected tid_real 41366 mode 0
(00.010972) 	Seizing 41314's 41467 thread
(00.011017) seccomp: Collected tid_real 41467 mode 0
(00.011019) 	Seizing 41314's 41468 thread
(00.011066) seccomp: Collected tid_real 41468 mode 0
(00.011069) 	Seizing 41314's 41469 thread
(00.011117) seccomp: Collected tid_real 41469 mode 0
(00.011120) 	Seizing 41314's 41470 thread
(00.011168) seccomp: Collected tid_real 41470 mode 0
(00.011171) 	Seizing 41314's 41471 thread
(00.011218) seccomp: Collected tid_real 41471 mode 0
(00.011221) 	Seizing 41314's 41472 thread
(00.011268) seccomp: Collected tid_real 41472 mode 0
(00.011271) 	Seizing 41314's 41488 thread
(00.011329) seccomp: Collected tid_real 41488 mode 0
(00.011332) 	Seizing 41314's 41492 thread
(00.011393) seccomp: Collected tid_real 41492 mode 0
(00.011396) 	Seizing 41314's 41523 thread
(00.011445) seccomp: Collected tid_real 41523 mode 0
(00.011448) 	Seizing 41314's 41526 thread
(00.011494) seccomp: Collected tid_real 41526 mode 0
(00.011497) 	Seizing 41314's 41531 thread
(00.011544) seccomp: Collected tid_real 41531 mode 0
(00.011548) 	Seizing 41314's 41532 thread
(00.011596) seccomp: Collected tid_real 41532 mode 0
(00.011599) 	Seizing 41314's 41533 thread
(00.011647) seccomp: Collected tid_real 41533 mode 0
(00.011650) 	Seizing 41314's 41541 thread
(00.011697) seccomp: Collected tid_real 41541 mode 0
(00.011700) 	Seizing 41314's 41572 thread
(00.011747) seccomp: Collected tid_real 41572 mode 0
(00.011750) 	Seizing 41314's 41573 thread
(00.011800) seccomp: Collected tid_real 41573 mode 0
(00.011803) 	Seizing 41314's 41587 thread
(00.011850) seccomp: Collected tid_real 41587 mode 0
(00.011853) 	Seizing 41314's 41618 thread
(00.011910) seccomp: Collected tid_real 41618 mode 0
(00.011914) 	Seizing 41314's 42315 thread
(00.011962) seccomp: Collected tid_real 42315 mode 0
(00.011965) 	Seizing 41314's 42317 thread
(00.012012) seccomp: Collected tid_real 42317 mode 0
(00.012015) 	Seizing 41314's 42318 thread
(00.012062) seccomp: Collected tid_real 42318 mode 0
(00.012065) 	Seizing 41314's 42432 thread
(00.012119) seccomp: Collected tid_real 42432 mode 0
(00.012122) 	Seizing 41314's 42433 thread
(00.012169) seccomp: Collected tid_real 42433 mode 0
(00.012173) 	Seizing 41314's 42434 thread
(00.012221) seccomp: Collected tid_real 42434 mode 0
(00.012225) 	Seizing 41314's 42435 thread
(00.012272) seccomp: Collected tid_real 42435 mode 0
(00.012275) 	Seizing 41314's 42436 thread
(00.012322) seccomp: Collected tid_real 42436 mode 0
(00.012325) 	Seizing 41314's 42437 thread
(00.012373) seccomp: Collected tid_real 42437 mode 0
(00.012376) 	Seizing 41314's 42438 thread
(00.012436) seccomp: Collected tid_real 42438 mode 0
(00.012439) 	Seizing 41314's 42439 thread
(00.012487) seccomp: Collected tid_real 42439 mode 0
(00.012496) 	Seizing 41314's 42440 thread
(00.012549) seccomp: Collected tid_real 42440 mode 0
(00.012552) 	Seizing 41314's 42441 thread
(00.012600) seccomp: Collected tid_real 42441 mode 0
(00.012604) 	Seizing 41314's 42442 thread
(00.012651) seccomp: Collected tid_real 42442 mode 0
(00.012697) Collected (3 attempts, 0 in_progress)
(00.012857) Collected (4 attempts, 0 in_progress)
(00.013017) Collected 41314 in 1 state
(00.013057) Lock network
(00.013125) 	type sysfs source sysfs mnt_id 18 s_dev 0x12 / @ ./sys flags 0x30000e options
(00.013138) 	type proc source proc mnt_id 19 s_dev 0x3 / @ ./proc flags 0x30000e options
(00.013158) 	type devtmpfs source devtmpfs mnt_id 20 s_dev 0x5 / @ ./dev flags 0x1100002 options size=4072936k,nr_inodes=1018234,mode=755
(00.013166) 	type securityfs source securityfs mnt_id 21 s_dev 0x11 / @ ./sys/kernel/security flags 0x30000e options
(00.013172) 	type tmpfs source tmpfs mnt_id 22 s_dev 0x13 / @ ./dev/shm flags 0x1100006 options
(00.013180) 	type devpts source devpts mnt_id 23 s_dev 0xc / @ ./dev/pts flags 0x30000a options gid=5,mode=620,ptmxmode=000
(00.013193) 	type tmpfs source tmpfs mnt_id 24 s_dev 0x14 / @ ./run flags 0x1100006 options mode=755
(00.013200) 	type tmpfs source tmpfs mnt_id 25 s_dev 0x15 / @ ./sys/fs/cgroup flags 0x110000f options mode=755
(00.013208) 	type cgroup source cgroup mnt_id 26 s_dev 0x16 / @ ./sys/fs/cgroup/systemd flags 0x30000e options xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd
(00.013216) 	type pstore source pstore mnt_id 27 s_dev 0x17 / @ ./sys/fs/pstore flags 0x30000e options
(00.013244) 	type cgroup source cgroup mnt_id 28 s_dev 0x18 / @ ./sys/fs/cgroup/pids flags 0x30000e options pids
(00.013250) 	type cgroup source cgroup mnt_id 29 s_dev 0x19 / @ ./sys/fs/cgroup/cpu,cpuacct flags 0x30000e options cpuacct,cpu
(00.013257) 	type cgroup source cgroup mnt_id 30 s_dev 0x1a / @ ./sys/fs/cgroup/devices flags 0x30000e options devices
(00.013262) 	type cgroup source cgroup mnt_id 31 s_dev 0x1b / @ ./sys/fs/cgroup/cpuset flags 0x30000e options cpuset
(00.013267) 	type cgroup source cgroup mnt_id 32 s_dev 0x1c / @ ./sys/fs/cgroup/freezer flags 0x30000e options freezer
(00.013272) 	type cgroup source cgroup mnt_id 33 s_dev 0x1d / @ ./sys/fs/cgroup/blkio flags 0x30000e options blkio
(00.013277) 	type cgroup source cgroup mnt_id 34 s_dev 0x1e / @ ./sys/fs/cgroup/net_cls,net_prio flags 0x30000e options net_prio,net_cls
(00.013282) 	type cgroup source cgroup mnt_id 35 s_dev 0x1f / @ ./sys/fs/cgroup/hugetlb flags 0x30000e options hugetlb
(00.013289) 	type cgroup source cgroup mnt_id 36 s_dev 0x20 / @ ./sys/fs/cgroup/perf_event flags 0x30000e options perf_event
(00.013294) 	type cgroup source cgroup mnt_id 37 s_dev 0x21 / @ ./sys/fs/cgroup/memory flags 0x30000e options memory
(00.013319) 	type configfs source configfs mnt_id 38 s_dev 0x22 / @ ./sys/kernel/config flags 0x300000 options
(00.013325) 	type ext4 source /dev/vda1 mnt_id 39 s_dev 0xfd00001 / @ ./ flags 0x300000 options data=ordered
(00.013331) 	type autofs source systemd-1 mnt_id 16 s_dev 0x10 / @ ./proc/sys/fs/binfmt_misc flags 0x300000 options fd=22,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=11533
(00.013342) 	type hugetlbfs source hugetlbfs mnt_id 40 s_dev 0x23 / @ ./dev/hugepages flags 0x300000 options
(00.013348) 	type debugfs source debugfs mnt_id 41 s_dev 0x6 / @ ./sys/kernel/debug flags 0x300000 options
(00.013353) 	type mqueue source mqueue mnt_id 42 s_dev 0xf / @ ./dev/mqueue flags 0x300000 options
(00.013358) 	type tmpfs source none mnt_id 45 s_dev 0x25 / @ ./noah/download flags 0x300000 options size=819200k,mode=755
(00.013363) 	type tmpfs source none mnt_id 46 s_dev 0x26 / @ ./noah/modules flags 0x300000 options size=819200k,mode=755
(00.013368) 	type tmpfs source none mnt_id 47 s_dev 0x27 / @ ./noah/tmp flags 0x300000 options size=409600k,mode=755
(00.013372) 	type tmpfs source none mnt_id 48 s_dev 0x28 / @ ./noah/bin flags 0x300000 options size=102400k,mode=755
(00.013379) 	type tmpfs source tmpfs mnt_id 88 s_dev 0x29 / @ ./run/user/0 flags 0x300006 options size=816752k,mode=700
(00.013384) 	type binfmt_misc source binfmt_misc mnt_id 90 s_dev 0x2a / @ ./proc/sys/fs/binfmt_misc flags 0x300000 options
(00.013403) mnt: Building mountpoints tree
(00.013406) mnt: 	Building plain mount tree
(00.013408) mnt: 		Working on 90->16
(00.013410) mnt: 		Working on 88->24
(00.013415) mnt: 		Working on 48->39
(00.013417) mnt: 		Working on 47->39
(00.013418) mnt: 		Working on 46->39
(00.013420) mnt: 		Working on 45->39
(00.013421) mnt: 		Working on 42->20
(00.013423) mnt: 		Working on 41->18
(00.013425) mnt: 		Working on 40->20
(00.013427) mnt: 		Working on 16->19
(00.013428) mnt: 		Working on 39->0
(00.013430) mnt: 		Working on 38->18
(00.013432) mnt: 		Working on 37->25
(00.013433) mnt: 		Working on 36->25
(00.013435) mnt: 		Working on 35->25
(00.013436) mnt: 		Working on 34->25
(00.013438) mnt: 		Working on 33->25
(00.013440) mnt: 		Working on 32->25
(00.013441) mnt: 		Working on 31->25
(00.013443) mnt: 		Working on 30->25
(00.013444) mnt: 		Working on 29->25
(00.013446) mnt: 		Working on 28->25
(00.013448) mnt: 		Working on 27->18
(00.013450) mnt: 		Working on 26->25
(00.013452) mnt: 		Working on 25->18
(00.013454) mnt: 		Working on 24->39
(00.013456) mnt: 		Working on 23->20
(00.013457) mnt: 		Working on 22->20
(00.013459) mnt: 		Working on 21->18
(00.013462) mnt: 		Working on 20->39
(00.013463) mnt: 		Working on 19->39
(00.013465) mnt: 		Working on 18->39
(00.013468) mnt: 	Resorting children of 39 in mount order
(00.013470) mnt: 	Resorting children of 48 in mount order
(00.013472) mnt: 	Resorting children of 47 in mount order
(00.013473) mnt: 	Resorting children of 46 in mount order
(00.013475) mnt: 	Resorting children of 45 in mount order
(00.013477) mnt: 	Resorting children of 24 in mount order
(00.013478) mnt: 	Resorting children of 88 in mount order
(00.013480) mnt: 	Resorting children of 20 in mount order
(00.013482) mnt: 	Resorting children of 42 in mount order
(00.013483) mnt: 	Resorting children of 40 in mount order
(00.013485) mnt: 	Resorting children of 23 in mount order
(00.013486) mnt: 	Resorting children of 22 in mount order
(00.013488) mnt: 	Resorting children of 19 in mount order
(00.013489) mnt: 	Resorting children of 16 in mount order
(00.013491) mnt: 	Resorting children of 90 in mount order
(00.013493) mnt: 	Resorting children of 18 in mount order
(00.013495) mnt: 	Resorting children of 41 in mount order
(00.013496) mnt: 	Resorting children of 38 in mount order
(00.013498) mnt: 	Resorting children of 27 in mount order
(00.013499) mnt: 	Resorting children of 25 in mount order
(00.013503) mnt: 	Resorting children of 37 in mount order
(00.013505) mnt: 	Resorting children of 36 in mount order
(00.013506) mnt: 	Resorting children of 35 in mount order
(00.013508) mnt: 	Resorting children of 34 in mount order
(00.013509) mnt: 	Resorting children of 33 in mount order
(00.013511) mnt: 	Resorting children of 32 in mount order
(00.013512) mnt: 	Resorting children of 31 in mount order
(00.013514) mnt: 	Resorting children of 30 in mount order
(00.013516) mnt: 	Resorting children of 29 in mount order
(00.013517) mnt: 	Resorting children of 28 in mount order
(00.013519) mnt: 	Resorting children of 26 in mount order
(00.013520) mnt: 	Resorting children of 21 in mount order
(00.013522) mnt: Done:
(00.013523) mnt: [./](39->0)
(00.013526) mnt:  [./noah/bin](48->39)
(00.013528) mnt:  <--
(00.013529) mnt:  [./noah/tmp](47->39)
(00.013531) mnt:  <--
(00.013533) mnt:  [./noah/modules](46->39)
(00.013534) mnt:  <--
(00.013536) mnt:  [./noah/download](45->39)
(00.013538) mnt:  <--
(00.013539) mnt:  [./run](24->39)
(00.013541) mnt:   [./run/user/0](88->24)
(00.013543) mnt:   <--
(00.013544) mnt:  <--
(00.013546) mnt:  [./dev](20->39)
(00.013548) mnt:   [./dev/mqueue](42->20)
(00.013550) mnt:   <--
(00.013551) mnt:   [./dev/hugepages](40->20)
(00.013553) mnt:   <--
(00.013554) mnt:   [./dev/pts](23->20)
(00.013556) mnt:   <--
(00.013558) mnt:   [./dev/shm](22->20)
(00.013560) mnt:   <--
(00.013561) mnt:  <--
(00.013563) mnt:  [./proc](19->39)
(00.013564) mnt:   [./proc/sys/fs/binfmt_misc](16->19)
(00.013566) mnt:    [./proc/sys/fs/binfmt_misc](90->16)
(00.013568) mnt:    <--
(00.013570) mnt:   <--
(00.013571) mnt:  <--
(00.013573) mnt:  [./sys](18->39)
(00.013575) mnt:   [./sys/kernel/debug](41->18)
(00.013576) mnt:   <--
(00.013578) mnt:   [./sys/kernel/config](38->18)
(00.013583) mnt:   <--
(00.013584) mnt:   [./sys/fs/pstore](27->18)
(00.013586) mnt:   <--
(00.013588) mnt:   [./sys/fs/cgroup](25->18)
(00.013589) mnt:    [./sys/fs/cgroup/memory](37->25)
(00.013591) mnt:    <--
(00.013593) mnt:    [./sys/fs/cgroup/perf_event](36->25)
(00.013594) mnt:    <--
(00.013596) mnt:    [./sys/fs/cgroup/hugetlb](35->25)
(00.013598) mnt:    <--
(00.013599) mnt:    [./sys/fs/cgroup/net_cls,net_prio](34->25)
(00.013601) mnt:    <--
(00.013603) mnt:    [./sys/fs/cgroup/blkio](33->25)
(00.013605) mnt:    <--
(00.013606) mnt:    [./sys/fs/cgroup/freezer](32->25)
(00.013608) mnt:    <--
(00.013609) mnt:    [./sys/fs/cgroup/cpuset](31->25)
(00.013611) mnt:    <--
(00.013613) mnt:    [./sys/fs/cgroup/devices](30->25)
(00.013615) mnt:    <--
(00.013616) mnt:    [./sys/fs/cgroup/cpu,cpuacct](29->25)
(00.013618) mnt:    <--
(00.013619) mnt:    [./sys/fs/cgroup/pids](28->25)
(00.013621) mnt:    <--
(00.013623) mnt:    [./sys/fs/cgroup/systemd](26->25)
(00.013625) mnt:    <--
(00.013626) mnt:   <--
(00.013628) mnt:   [./sys/kernel/security](21->18)
(00.013629) mnt:   <--
(00.013631) mnt:  <--
(00.013633) mnt: <--
(00.013645) Collecting netns 2/42446
(00.013782) unix: 	Collected: ino 8465 peer_ino 0 family    1 type    2 state  7 name /run/systemd/notify
(00.013786) unix: 	Collected: ino 8467 peer_ino 0 family    1 type    2 state  7 name /run/systemd/cgroups-agent
(00.013789) unix: 	Collected: ino 14104 peer_ino 0 family    1 type    1 state 10 name /var/run/abrt/abrt.socket
(00.013791) unix: 	Collected: ino 11544 peer_ino 0 family    1 type    2 state  7 name /run/systemd/shutdownd
(00.013793) unix: 	Collected: ino 8484 peer_ino 0 family    1 type    1 state 10 name /run/systemd/journal/stdout
(00.013795) unix: 	Collected: ino 8487 peer_ino 0 family    1 type    2 state  7 name /run/systemd/journal/socket
(00.013797) unix: 	Collected: ino 8489 peer_ino 0 family    1 type    2 state  7 name /dev/log
(00.013799) unix: 	Collected: ino 11567 peer_ino 0 family    1 type    5 state 10 name /run/udev/control
(00.013801) unix: 	Collected: ino 16213 peer_ino 0 family    1 type    1 state 10 name public/pickup
(00.013803) unix: 	Collected: ino 16217 peer_ino 0 family    1 type    1 state 10 name public/cleanup
(00.013805) unix: 	Collected: ino 16220 peer_ino 0 family    1 type    1 state 10 name public/qmgr
(00.013807) unix: 	Collected: ino 16224 peer_ino 0 family    1 type    1 state 10 name private/tlsmgr
(00.013809) unix: 	Collected: ino 16227 peer_ino 0 family    1 type    1 state 10 name private/rewrite
(00.013811) unix: 	Collected: ino 16230 peer_ino 0 family    1 type    1 state 10 name private/bounce
(00.013813) unix: 	Collected: ino 16233 peer_ino 0 family    1 type    1 state 10 name private/defer
(00.013815) unix: 	Collected: ino 16236 peer_ino 0 family    1 type    1 state 10 name private/trace
(00.013817) unix: 	Collected: ino 16239 peer_ino 0 family    1 type    1 state 10 name private/verify
(00.013819) unix: 	Collected: ino 16242 peer_ino 0 family    1 type    1 state 10 name public/flush
(00.013821) unix: 	Collected: ino 16245 peer_ino 0 family    1 type    1 state 10 name private/proxymap
(00.013823) unix: 	Collected: ino 16248 peer_ino 0 family    1 type    1 state 10 name private/proxywrite
(00.013824) unix: 	Collected: ino 16251 peer_ino 0 family    1 type    1 state 10 name private/smtp
(00.013826) unix: 	Collected: ino 16254 peer_ino 0 family    1 type    1 state 10 name private/relay
(00.013828) unix: 	Collected: ino 16257 peer_ino 0 family    1 type    1 state 10 name public/showq
(00.013830) unix: 	Collected: ino 16260 peer_ino 0 family    1 type    1 state 10 name private/error
(00.013832) unix: 	Collected: ino 16263 peer_ino 0 family    1 type    1 state 10 name private/retry
(00.013834) unix: 	Collected: ino 16266 peer_ino 0 family    1 type    1 state 10 name private/discard
(00.013836) unix: 	Collected: ino 16269 peer_ino 0 family    1 type    1 state 10 name private/local
(00.013838) unix: 	Collected: ino 16272 peer_ino 0 family    1 type    1 state 10 name private/virtual
(00.013840) unix: 	Collected: ino 16275 peer_ino 0 family    1 type    1 state 10 name private/lmtp
(00.013844) unix: 	Collected: ino 16278 peer_ino 0 family    1 type    1 state 10 name private/anvil
(00.013846) unix: 	Collected: ino 16281 peer_ino 0 family    1 type    1 state 10 name private/scache
(00.013848) unix: 	Collected: ino 37287 peer_ino 0 family    1 type    1 state 10 name
(00.013850) unix: 	Collected: ino 14444 peer_ino 0 family    1 type    1 state 10 name /var/run/lsm/ipc/simc
(00.013852) unix: 	Collected: ino 14446 peer_ino 0 family    1 type    1 state 10 name /var/run/lsm/ipc/sim
(00.013854) unix: 	Collected: ino 13713 peer_ino 0 family    1 type    1 state 10 name /run/dbus/system_bus_socket
(00.013856) unix: 	Collected: ino 31304 peer_ino 0 family    1 type    1 state 10 name
(00.013858) unix: 	Collected: ino 37306 peer_ino 0 family    1 type    1 state 10 name /noah/tmp//ccs-agent.binary.thrift
(00.013862) unix: 	Collected: ino 29401 peer_ino 0 family    1 type    1 state 10 name ./agent.sock
(00.013864) unix: 	Collected: ino 31305 peer_ino 0 family    1 type    1 state 10 name
(00.013866) unix: 	Collected: ino 21214 peer_ino 0 family    1 type    2 state  7 name /var/run/chrony/chronyd.sock
(00.013877) unix: 	Collected: ino 11506 peer_ino 0 family    1 type    1 state 10 name /run/systemd/private
(00.013885) unix: 	Collected: ino 37303 peer_ino 37302 family    1 type    1 state  1 name null
(00.013888) unix: 	Collected: ino 16280 peer_ino 16279 family    1 type    1 state  1 name null
(00.013890) unix: 	Collected: ino 16265 peer_ino 16264 family    1 type    1 state  1 name null
(00.013892) unix: 	Collected: ino 16243 peer_ino 16244 family    1 type    1 state  1 name null
(00.013894) unix: 	Collected: ino 15949 peer_ino 15343 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.013897) unix: 	Collected: ino 14187 peer_ino 14524 family    1 type    1 state  1 name /run/dbus/system_bus_socket
(00.013899) unix: 	Collected: ino 31573 peer_ino 31574 family    1 type    1 state  1 name null
(00.013901) unix: 	Collected: ino 20645 peer_ino 8487 family    1 type    2 state  7 name null
(00.013903) unix: 	Collected: ino 16292 peer_ino 8489 family    1 type    2 state  7 name null
(00.013905) unix: 	Collected: ino 13506 peer_ino 13507 family    1 type    1 state  1 name null
(00.013907) unix: 	Collected: ino 16211 peer_ino 16212 family    1 type    1 state  1 name null
(00.013909) unix: 	Collected: ino 33895 peer_ino 33896 family    1 type    1 state  1 name null
(00.013911) unix: 	Collected: ino 15025 peer_ino 8489 family    1 type    2 state  7 name null
(00.013914) unix: 	Collected: ino 16253 peer_ino 16252 family    1 type    1 state  1 name null
(00.013916) unix: 	Collected: ino 12071 peer_ino 8487 family    1 type    2 state  7 name null
(00.013918) unix: 	Collected: ino 20442 peer_ino 8489 family    1 type    2 state  7 name null
(00.013920) unix: 	Collected: ino 14524 peer_ino 14187 family    1 type    1 state  1 name null
(00.013927) unix: 	Collected: ino 12787 peer_ino 12542 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.013929) unix: 	Collected: ino 45062 peer_ino 45063 family    1 type    1 state  1 name null
(00.013931) unix: 	Collected: ino 16276 peer_ino 16277 family    1 type    1 state  1 name null
(00.013933) unix: 	Collected: ino 16261 peer_ino 16262 family    1 type    1 state  1 name null
(00.013936) unix: 	Collected: ino 18471 peer_ino 8489 family    1 type    2 state  7 name null
(00.013938) unix: 	Collected: ino 14365 peer_ino 14364 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.013940) unix: 	Collected: ino 14360 peer_ino 14361 family    1 type    1 state  1 name null
(00.013942) unix: 	Collected: ino 16231 peer_ino 16232 family    1 type    1 state  1 name null
(00.013944) unix: 	Collected: ino 16264 peer_ino 16265 family    1 type    1 state  1 name null
(00.013946) unix: 	Collected: ino 14518 peer_ino 8487 family    1 type    2 state  7 name null
(00.013948) unix: 	Collected: ino 45063 peer_ino 45062 family    1 type    1 state  1 name
(00.013953) unix: 	Collected: ino 16958 peer_ino 16959 family    1 type    1 state  1 name null
(00.013955) unix: 	Collected: ino 13507 peer_ino 13506 family    1 type    1 state  1 name null
(00.013957) unix: 	Collected: ino 21185 peer_ino 8489 family    1 type    2 state  7 name null
(00.013960) unix: 	Collected: ino 16268 peer_ino 16267 family    1 type    1 state  1 name null
(00.013962) unix: 	Collected: ino 94316 peer_ino 8489 family    1 type    2 state  7 name null
(00.013964) unix: 	Collected: ino 14184 peer_ino 14517 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.013966) unix: 	Collected: ino 13934 peer_ino 14154 family    1 type    1 state  1 name null
(00.013968) unix: 	Collected: ino 34427 peer_ino 31306 family    1 type    1 state  1 name
(00.013970) unix: 	Collected: ino 16252 peer_ino 16253 family    1 type    1 state  1 name null
(00.013973) unix: 	Collected: ino 16219 peer_ino 16218 family    1 type    1 state  1 name null
(00.013975) unix: 	Collected: ino 14153 peer_ino 14152 family    1 type    1 state  1 name null
(00.013979) unix: 	Collected: ino 33897 peer_ino 33898 family    1 type    1 state  1 name null
(00.013981) unix: 	Collected: ino 31306 peer_ino 34427 family    1 type    1 state  1 name null
(00.013983) unix: 	Collected: ino 16238 peer_ino 16237 family    1 type    1 state  1 name null
(00.013985) unix: 	Collected: ino 14531 peer_ino 8489 family    1 type    2 state  7 name null
(00.013986) unix: 	Collected: ino 16256 peer_ino 16255 family    1 type    1 state  1 name null
(00.013988) unix: 	Collected: ino 38108 peer_ino 37294 family    1 type    1 state  1 name
(00.013990) unix: 	Collected: ino 12596 peer_ino 12597 family    1 type    2 state  7 name null
(00.013992) unix: 	Collected: ino 16250 peer_ino 16249 family    1 type    1 state  1 name null
(00.013994) unix: 	Collected: ino 16273 peer_ino 16274 family    1 type    1 state  1 name null
(00.013995) unix: 	Collected: ino 16229 peer_ino 16228 family    1 type    1 state  1 name null
(00.013997) unix: 	Collected: ino 16903 peer_ino 8489 family    1 type    2 state  7 name null
(00.013999) unix: 	Collected: ino 16235 peer_ino 16234 family    1 type    1 state  1 name null
(00.014001) unix: 	Collected: ino 11248 peer_ino 8465 family    1 type    2 state  7 name null
(00.014003) unix: 	Collected: ino 14412 peer_ino 14413 family    1 type    1 state  1 name null
(00.014004) unix: 	Collected: ino 16277 peer_ino 16276 family    1 type    1 state  1 name null
(00.014006) unix: 	Collected: ino 16232 peer_ino 16231 family    1 type    1 state  1 name null
(00.014008) unix: 	Collected: ino 14064 peer_ino 14065 family    1 type    1 state  1 name null
(00.014010) unix: 	Collected: ino 16923 peer_ino 8489 family    1 type    2 state  7 name null
(00.014012) unix: 	Collected: ino 14364 peer_ino 14365 family    1 type    1 state  1 name null
(00.014014) unix: 	Collected: ino 21182 peer_ino 21181 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.014015) unix: 	Collected: ino 20759 peer_ino 20279 family    1 type    1 state  1 name null
(00.014017) unix: 	Collected: ino 16282 peer_ino 16283 family    1 type    1 state  1 name null
(00.014019) unix: 	Collected: ino 16267 peer_ino 16268 family    1 type    1 state  1 name null
(00.014022) unix: 	Collected: ino 16215 peer_ino 16214 family    1 type    1 state  1 name null
(00.014024) unix: 	Collected: ino 16255 peer_ino 16256 family    1 type    1 state  1 name null
(00.014026) unix: 	Collected: ino 16241 peer_ino 16240 family    1 type    1 state  1 name null
(00.014028) unix: 	Collected: ino 14106 peer_ino 0 family    1 type    2 state  7 name null
(00.014030) unix: 	Collected: ino 324536 peer_ino 0 family    1 type    5 state  7 name null
(00.014032) unix: 	Collected: ino 94456 peer_ino 8489 family    1 type    2 state  7 name null
(00.014034) unix: 	Collected: ino 15343 peer_ino 15949 family    1 type    1 state  1 name null
(00.014037) unix: 	Collected: ino 12597 peer_ino 12596 family    1 type    2 state  7 name null
(00.014040) unix: 	Collected: ino 16271 peer_ino 16270 family    1 type    1 state  1 name null
(00.014045) unix: 	Collected: ino 16218 peer_ino 16219 family    1 type    1 state  1 name null
(00.014048) unix: 	Collected: ino 16234 peer_ino 16235 family    1 type    1 state  1 name null
(00.014050) unix: 	Collected: ino 14155 peer_ino 14473 family    1 type    1 state  1 name /run/dbus/system_bus_socket
(00.014052) unix: 	Collected: ino 16212 peer_ino 16211 family    1 type    1 state  1 name null
(00.014054) unix: 	Collected: ino 31574 peer_ino 31573 family    1 type    1 state  1 name null
(00.014057) unix: 	Collected: ino 16274 peer_ino 16273 family    1 type    1 state  1 name null
(00.014059) unix: 	Collected: ino 16259 peer_ino 16258 family    1 type    1 state  1 name null
(00.014062) unix: 	Collected: ino 16222 peer_ino 16221 family    1 type    1 state  1 name null
(00.014065) unix: 	Collected: ino 98387 peer_ino 8489 family    1 type    2 state  7 name null
(00.014067) unix: 	Collected: ino 14473 peer_ino 14155 family    1 type    1 state  1 name null
(00.014069) unix: 	Collected: ino 13247 peer_ino 13248 family    1 type    1 state  1 name null
(00.014072) unix: 	Collected: ino 16228 peer_ino 16229 family    1 type    1 state  1 name null
(00.014074) unix: 	Collected: ino 37296 peer_ino 37295 family    1 type    1 state  1 name null
(00.014076) unix: 	Collected: ino 16247 peer_ino 16246 family    1 type    1 state  1 name null
(00.014080) unix: 	Collected: ino 16246 peer_ino 16247 family    1 type    1 state  1 name null
(00.014082) unix: 	Collected: ino 16225 peer_ino 16226 family    1 type    1 state  1 name null
(00.014084) unix: 	Collected: ino 16214 peer_ino 16215 family    1 type    1 state  1 name null
(00.014087) unix: 	Collected: ino 14065 peer_ino 14064 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.014089) unix: 	Collected: ino 16279 peer_ino 16280 family    1 type    1 state  1 name null
(00.014091) unix: 	Collected: ino 16249 peer_ino 16250 family    1 type    1 state  1 name null
(00.014093) unix: 	Collected: ino 37294 peer_ino 38108 family    1 type    1 state  1 name null
(00.014095) unix: 	Collected: ino 14152 peer_ino 14153 family    1 type    1 state  1 name null
(00.014097) unix: 	Collected: ino 16283 peer_ino 16282 family    1 type    1 state  1 name null
(00.014100) unix: 	Collected: ino 14361 peer_ino 14360 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.014102) unix: 	Collected: ino 13497 peer_ino 8489 family    1 type    2 state  7 name null
(00.014104) unix: 	Collected: ino 16270 peer_ino 16271 family    1 type    1 state  1 name null
(00.014106) unix: 	Collected: ino 14154 peer_ino 13934 family    1 type    1 state  1 name /run/dbus/system_bus_socket
(00.014108) unix: 	Collected: ino 37295 peer_ino 37296 family    1 type    1 state  1 name null
(00.014110) unix: 	Collected: ino 16959 peer_ino 16958 family    1 type    1 state  1 name /run/dbus/system_bus_socket
(00.014113) unix: 	Collected: ino 14517 peer_ino 14184 family    1 type    1 state  1 name null
(00.014115) unix: 	Collected: ino 16226 peer_ino 16225 family    1 type    1 state  1 name null
(00.014117) unix: 	Collected: ino 16221 peer_ino 16222 family    1 type    1 state  1 name null
(00.014119) unix: 	Collected: ino 33898 peer_ino 33897 family    1 type    1 state  1 name null
(00.014121) unix: 	Collected: ino 16237 peer_ino 16238 family    1 type    1 state  1 name null
(00.014123) unix: 	Collected: ino 13248 peer_ino 13247 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.014125) unix: 	Collected: ino 16258 peer_ino 16259 family    1 type    1 state  1 name null
(00.014132) unix: 	Collected: ino 20279 peer_ino 20759 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.014135) unix: 	Collected: ino 16244 peer_ino 16243 family    1 type    1 state  1 name null
(00.014138) unix: 	Collected: ino 14413 peer_ino 14412 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.014140) unix: 	Collected: ino 21181 peer_ino 21182 family    1 type    1 state  1 name null
(00.014142) unix: 	Collected: ino 33896 peer_ino 33895 family    1 type    1 state  1 name null
(00.014148) unix: 	Collected: ino 16240 peer_ino 16241 family    1 type    1 state  1 name null
(00.014150) unix: 	Collected: ino 16262 peer_ino 16261 family    1 type    1 state  1 name null
(00.014152) unix: 	Collected: ino 12542 peer_ino 12787 family    1 type    1 state  1 name null
(00.014155) unix: 	Collected: ino 37302 peer_ino 37303 family    1 type    1 state  1 name null
(00.014293) inet: 	Collected: ino   0x72da family AF_INET    type SOCK_STREAM    port      422 state TCP_LISTEN       src_addr 0.0.0.0
(00.014297) inet: 	Collected: ino   0x91b2 family AF_INET    type SOCK_STREAM    port      424 state TCP_LISTEN       src_addr 0.0.0.0
(00.014300) inet: 	Collected: ino   0xb073 family AF_INET    type SOCK_STREAM    port      425 state TCP_LISTEN       src_addr 0.0.0.0
(00.014302) inet: 	Collected: ino   0xb09c family AF_INET    type SOCK_STREAM    port      426 state TCP_LISTEN       src_addr 0.0.0.0
(00.014304) inet: 	Collected: ino   0xbaf9 family AF_INET    type SOCK_STREAM    port      430 state TCP_LISTEN       src_addr 0.0.0.0
(00.014306) inet: 	Collected: ino   0xbb61 family AF_INET    type SOCK_STREAM    port      431 state TCP_LISTEN       src_addr 0.0.0.0
(00.014309) inet: 	Collected: ino   0xc70d family AF_INET    type SOCK_STREAM    port      432 state TCP_LISTEN       src_addr 0.0.0.0
(00.014311) inet: 	Collected: ino   0xa83b family AF_INET    type SOCK_STREAM    port      436 state TCP_LISTEN       src_addr 0.0.0.0
(00.014313) inet: 	Collected: ino   0x5217 family AF_INET    type SOCK_STREAM    port      404 state TCP_LISTEN       src_addr 0.0.0.0
(00.014315) inet: 	Collected: ino   0xaa63 family AF_INET    type SOCK_STREAM    port      437 state TCP_LISTEN       src_addr 0.0.0.0
(00.014317) inet: 	Collected: ino   0xc716 family AF_INET    type SOCK_STREAM    port      438 state TCP_LISTEN       src_addr 0.0.0.0
(00.014320) inet: 	Collected: ino   0x7a47 family AF_INET    type SOCK_STREAM    port      790 state TCP_LISTEN       src_addr 0.0.0.0
(00.014322) inet: 	Collected: ino   0x4f3a family AF_INET    type SOCK_STREAM    port       22 state TCP_LISTEN       src_addr 0.0.0.0
(00.014324) inet: 	Collected: ino   0x73ae family AF_INET    type SOCK_STREAM    port      791 state TCP_LISTEN       src_addr 0.0.0.0
(00.014326) inet: 	Collected: ino   0xaafd family AF_INET    type SOCK_STREAM    port      792 state TCP_LISTEN       src_addr 0.0.0.0
(00.014329) inet: 	Collected: ino   0x877f family AF_INET    type SOCK_STREAM    port      440 state TCP_LISTEN       src_addr 0.0.0.0
(00.014331) inet: 	Collected: ino   0x878c family AF_INET    type SOCK_STREAM    port      793 state TCP_LISTEN       src_addr 0.0.0.0
(00.014335) inet: 	Collected: ino   0x4fc3 family AF_INET    type SOCK_STREAM    port      409 state TCP_LISTEN       src_addr 0.0.0.0
(00.014337) inet: 	Collected: ino   0x3f51 family AF_INET    type SOCK_STREAM    port       25 state TCP_LISTEN       src_addr 127.0.0.1
(00.014340) inet: 	Collected: ino   0x846d family AF_INET    type SOCK_STREAM    port      794 state TCP_LISTEN       src_addr 0.0.0.0
(00.014342) inet: 	Collected: ino   0xaba1 family AF_INET    type SOCK_STREAM    port      797 state TCP_LISTEN       src_addr 0.0.0.0
(00.014344) inet: 	Collected: ino   0xab9e family AF_INET    type SOCK_STREAM    port      798 state TCP_LISTEN       src_addr 0.0.0.0
(00.014346) inet: 	Collected: ino   0x72e0 family AF_INET    type SOCK_STREAM    port      446 state TCP_LISTEN       src_addr 0.0.0.0
(00.014349) inet: 	Collected: ino   0xaba0 family AF_INET    type SOCK_STREAM    port      799 state TCP_LISTEN       src_addr 0.0.0.0
(00.014351) inet: 	Collected: ino   0xab9f family AF_INET    type SOCK_STREAM    port      800 state TCP_LISTEN       src_addr 0.0.0.0
(00.014353) inet: 	Collected: ino  0x4e2a3 family AF_INET    type SOCK_STREAM    port    49160 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014356) inet: 	Collected: ino  0x1b418 family AF_INET    type SOCK_STREAM    port    40312 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014361) inet: 	Collected: ino   0xf407 family AF_INET    type SOCK_STREAM    port      432 state TCP_ESTABLISHED  src_addr 127.0.1.1
(00.014363) inet: 	Collected: ino   0xab9a family AF_INET    type SOCK_STREAM    port    33558 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014366) inet: 	Collected: ino   0xf406 family AF_INET    type SOCK_STREAM    port    45400 state TCP_ESTABLISHED  src_addr 127.0.0.1
(00.014368) inet: 	Collected: ino   0x4f71 family AF_INET    type SOCK_STREAM    port    57692 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014370) inet: 	Collected: ino  0x4d7af family AF_INET    type SOCK_STREAM    port    50558 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014372) inet: 	Collected: ino   0xb35f family AF_INET    type SOCK_STREAM    port    32778 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014375) inet: 	Collected: ino  0x163c7 family AF_INET    type SOCK_STREAM    port       22 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014377) inet: 	Collected: ino  0x17387 family AF_INET    type SOCK_STREAM    port       22 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014379) inet: 	Collected: ino  0x4f6be family AF_INET    type SOCK_STREAM    port    35766 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014381) inet: 	Collected: ino  0x467d5 family AF_INET    type SOCK_STREAM    port    45666 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014383) inet: 	Collected: ino  0x4e8ab family AF_INET    type SOCK_STREAM    port    44828 state TCP_ESTABLISHED  src_addr 127.0.0.1
(00.014394) inet: 	Collected: ino   0x4f7e family AF_INET    type SOCK_STREAM    port    51460 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014397) inet: 	Collected: ino   0xb1a3 family AF_INET    type SOCK_STREAM    port    56556 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014399) inet: 	Collected: ino   0x5198 family AF_INET    type SOCK_STREAM    port    46200 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014402) inet: 	Collected: ino  0x4e8ac family AF_INET    type SOCK_STREAM    port      792 state TCP_ESTABLISHED  src_addr 127.0.0.1
(00.014405) inet: 	Collected: ino   0x5180 family AF_INET    type SOCK_STREAM    port    35128 state TCP_ESTABLISHED  src_addr 10.25.**
(00.014434) inet: 	Collected: ino   0x43fe family AF_INET    type SOCK_DGRAM     port    40986 state TCP_CLOSE        src_addr 0.0.0.0
(00.014437) inet: 	Collected: ino   0x3ac8 family AF_INET    type SOCK_DGRAM     port       68 state TCP_CLOSE        src_addr 0.0.0.0
(00.014440) inet: 	Collected: ino   0x52d8 family AF_INET    type SOCK_DGRAM     port      323 state TCP_CLOSE        src_addr 127.0.0.1
(00.014444) inet: 	Collected: ino   0x72de family AF_INET    type SOCK_DGRAM     port      422 state TCP_CLOSE        src_addr 0.0.0.0
(00.014467) sockets: Sockects collect procedure family AF_INET proto IPPROTO_RAW: -2
(00.014572) inet: 	Collected: ino   0x72db family AF_INET6   type SOCK_STREAM    port      422 state TCP_LISTEN       src_addr ::
(00.014575) inet: 	Collected: ino   0x8790 family AF_INET6   type SOCK_STREAM    port      811 state TCP_LISTEN       src_addr ::
(00.014577) inet: 	Collected: ino  0x26f6e family AF_INET6   type SOCK_STREAM    port      780 state TCP_LISTEN       src_addr ::
(00.014579) inet: 	Collected: ino   0x516a family AF_INET6   type SOCK_STREAM    port      781 state TCP_LISTEN       src_addr ::
(00.014582) inet: 	Collected: ino   0xe881 family AF_INET6   type SOCK_STREAM    port      526 state TCP_LISTEN       src_addr ::
(00.014584) inet: 	Collected: ino   0xe883 family AF_INET6   type SOCK_STREAM    port      527 state TCP_LISTEN       src_addr ::
(00.014586) inet: 	Collected: ino   0x4f3c family AF_INET6   type SOCK_STREAM    port       22 state TCP_LISTEN       src_addr ::
(00.014589) inet: 	Collected: ino   0x3f52 family AF_INET6   type SOCK_STREAM    port       25 state TCP_LISTEN       src_addr ::1
(00.014591) inet: 	Collected: ino   0x8791 family AF_INET6   type SOCK_STREAM    port      795 state TCP_LISTEN       src_addr ::
(00.014594) inet: 	Collected: ino  0x4d8d0 family AF_INET6   type SOCK_STREAM    port    33954 state TCP_ESTABLISHED  src_addr ::ffff:10.25.**
(00.014601) inet: 	Collected: ino  0x4de15 family AF_INET6   type SOCK_STREAM    port    54826 state TCP_ESTABLISHED  src_addr ::ffff:10.25.**
(00.014603) inet: 	Collected: ino  0x4dcbf family AF_INET6   type SOCK_STREAM    port    33962 state TCP_ESTABLISHED  src_addr ::ffff:10.25.**
(00.014624) inet: 	Collected: ino   0x52d9 family AF_INET6   type SOCK_DGRAM     port      323 state TCP_CLOSE        src_addr ::1
(00.014644) sockets: Sockects collect procedure family AF_INET6 proto IPPROTO_RAW: -2
(00.014652) packet: Collect packet sock 15047 3
(00.014654) packet: 	Got 0 mreqs
(00.014682) netlink: Collect netlink sock 0x6
(00.014684) netlink: Collect netlink sock 0x507
(00.014686) netlink: Collect netlink sock 0x4f3b7
(00.014688) netlink: Collect netlink sock 0x509
(00.014689) netlink: Collect netlink sock 0x20ab
(00.014691) netlink: Collect netlink sock 0x4d8
(00.014693) netlink: Collect netlink sock 0x2cf7
(00.014694) netlink: Collect netlink sock 0x34b5
(00.014696) netlink: Collect netlink sock 0x1a61
(00.014697) netlink: Collect netlink sock 0x4f75
(00.014699) netlink: Collect netlink sock 0x14
(00.014701) netlink: Collect netlink sock 0xb3e7
(00.014703) netlink: Collect netlink sock 0xb3e7
(00.014704) netlink: Collect netlink sock 0x4f75
(00.014706) netlink: Collect netlink sock 0x508
(00.014707) netlink: Collect netlink sock 0x2cf1
(00.014709) netlink: Collect netlink sock 0x38ba
(00.014711) netlink: Collect netlink sock 0x4114
(00.014712) netlink: Collect netlink sock 0x38b8
(00.014714) netlink: Collect netlink sock 0x38b9
(00.014716) netlink: Collect netlink sock 0x8
(00.014717) netlink: Collect netlink sock 0x38bb
(00.014719) netlink: Collect netlink sock 0x2d31
(00.014721) netlink: Collect netlink sock 0x4114
(00.014724) netlink: Collect netlink sock 0x38bb
(00.014727) netlink: Collect netlink sock 0x38ba
(00.014728) netlink: Collect netlink sock 0x38b9
(00.014729) netlink: Collect netlink sock 0x38b8
(00.014731) netlink: Collect netlink sock 0x2d31
(00.014732) netlink: Collect netlink sock 0x2cf1
(00.014734) netlink: Collect netlink sock 0xb333
(00.014735) netlink: Collect netlink sock 0x409
(00.014737) netlink: Collect netlink sock 0x17
(00.014738) netlink: Collect netlink sock 0x37e7
(00.014744) Collecting pidns 1/42446
(00.014786) No parent images directory provided
(00.014792) ========================================
(00.014793) Dumping task (pid: 41314)
(00.014795) ========================================
(00.014796) Obtaining task stat ...
(00.014823)
(00.014824) Collecting mappings (pid: 41314)
(00.014826) ----------------------------------------
(00.014941) Found regular file mapping, OK
(00.014978) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/server/classes.jsa]
(00.014993) Only file size could be stored for validation for file /root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/server/classes.jsa
(00.015035) Found regular file mapping, OK
(00.015298) Found regular file mapping, OK
(00.015308) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/bin/java]
(00.015329) vma 55ad632e3000 borrows vfi from previous 55ad632e0000
(00.015334) vma 55ad632e4000 borrows vfi from previous 55ad632e3000
(00.015577) Found regular file mapping, OK
(00.015590) Dumping path for -3 fd via self 16 [/usr/lib/locale/locale-archive]
(00.015597) Only file size could be stored for validation for file /usr/lib/locale/locale-archive
(00.015912) Found regular file mapping, OK
(00.017293) Found regular file mapping, OK
(00.017311) Dumping path for -3 fd via self 16 [/usr/lib64/libresolv-2.17.so]
(00.017333) vma 7f7e5ddfc000 borrows vfi from previous 7f7e5dde6000
(00.017338) vma 7f7e5dffc000 borrows vfi from previous 7f7e5ddfc000
(00.017345) vma 7f7e5dffd000 borrows vfi from previous 7f7e5dffc000
(00.017416) Found regular file mapping, OK
(00.017427) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libverify.so]
(00.017451) vma 7f7e6c039000 borrows vfi from previous 7f7e6c02c000
(00.017485) vma 7f7e6c03b000 borrows vfi from previous 7f7e6c039000
(00.017494) Found regular file mapping, OK
(00.017503) Dumping path for -3 fd via self 16 [/usr/lib64/libnss_dns-2.17.so]
(00.017517) vma 7f7e6c042000 borrows vfi from previous 7f7e6c03c000
(00.017522) vma 7f7e6c241000 borrows vfi from previous 7f7e6c042000
(00.017527) vma 7f7e6c242000 borrows vfi from previous 7f7e6c241000
(00.017534) Found regular file mapping, OK
(00.017542) Dumping path for -3 fd via self 16 [/usr/lib64/libnss_bns.so.2]
(00.017548) Couldn't find the build-id note for file with fd 23
(00.017551) Only file size could be stored for validation for file /usr/lib64/libnss_bns.so.2
(00.017558) vma 7f7e6c249000 borrows vfi from previous 7f7e6c243000
(00.017587) vma 7f7e6c348000 borrows vfi from previous 7f7e6c249000
(00.017596) Found regular file mapping, OK
(00.017604) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libmanagement_ext.so]
(00.017617) vma 7f7e6c350000 borrows vfi from previous 7f7e6c34b000
(00.017622) vma 7f7e6c351000 borrows vfi from previous 7f7e6c350000
(00.017627) vma 7f7e6c352000 borrows vfi from previous 7f7e6c351000
(00.017855) Found regular file mapping, OK
(00.017865) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libjsvml.so]
(00.017894) vma 7f7e6d330000 borrows vfi from previous 7f7e6d262000
(00.017902) vma 7f7e6d331000 borrows vfi from previous 7f7e6d330000
(00.018524) Found regular file mapping, OK
(00.018540) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/modules]
(00.018547) Only file size could be stored for validation for file /root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/modules
(00.018742) Found regular file mapping, OK
(00.018754) Dumping path for -3 fd via self 16 [/usr/lib64/libnss_files-2.17.so]
(00.018776) vma 7f7e8d53a000 borrows vfi from previous 7f7e8d52e000
(00.018782) vma 7f7e8d739000 borrows vfi from previous 7f7e8d53a000
(00.018789) vma 7f7e8d73a000 borrows vfi from previous 7f7e8d739000
(00.018802) Found regular file mapping, OK
(00.018811) Dumping path for -3 fd via self 16 [/usr/lib64/libm-2.17.so]
(00.018828) vma 7f7e8d842000 borrows vfi from previous 7f7e8d741000
(00.018975) vma 7f7e8da41000 borrows vfi from previous 7f7e8d842000
(00.018982) vma 7f7e8da42000 borrows vfi from previous 7f7e8da41000
(00.018992) Found regular file mapping, OK
(00.019002) Dumping path for -3 fd via self 16 [/usr/lib64/librt-2.17.so]
(00.019020) vma 7f7e8da4a000 borrows vfi from previous 7f7e8da43000
(00.019026) vma 7f7e8dc49000 borrows vfi from previous 7f7e8da4a000
(00.019032) vma 7f7e8dc4a000 borrows vfi from previous 7f7e8dc49000
(00.019041) Found regular file mapping, OK
(00.019050) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/server/libjvm.so]
(00.019128) vma 7f7e8ee5d000 borrows vfi from previous 7f7e8dc4b000
(00.019135) vma 7f7e8ee5e000 borrows vfi from previous 7f7e8ee5d000
(00.019141) vma 7f7e8ef17000 borrows vfi from previous 7f7e8ee5e000
(00.019157) Found regular file mapping, OK
(00.019167) Dumping path for -3 fd via self 16 [/usr/lib64/libc-2.17.so]
(00.019184) vma 7f7e8f16c000 borrows vfi from previous 7f7e8efa8000
(00.019190) vma 7f7e8f36b000 borrows vfi from previous 7f7e8f16c000
(00.019233) vma 7f7e8f36f000 borrows vfi from previous 7f7e8f36b000
(00.019249) Found regular file mapping, OK
(00.019259) Dumping path for -3 fd via self 16 [/usr/lib64/libdl-2.17.so]
(00.019275) vma 7f7e8f378000 borrows vfi from previous 7f7e8f376000
(00.019281) vma 7f7e8f578000 borrows vfi from previous 7f7e8f378000
(00.019287) vma 7f7e8f579000 borrows vfi from previous 7f7e8f578000
(00.019296) Found regular file mapping, OK
(00.019305) Dumping path for -3 fd via self 16 [/usr/lib64/libpthread-2.17.so]
(00.019321) vma 7f7e8f591000 borrows vfi from previous 7f7e8f57a000
(00.019364) vma 7f7e8f790000 borrows vfi from previous 7f7e8f591000
(00.019370) vma 7f7e8f791000 borrows vfi from previous 7f7e8f790000
(00.019383) Found regular file mapping, OK
(00.019401) Dumping path for -3 fd via self 16 [/usr/lib64/libz.so.1.2.7]
(00.019418) vma 7f7e8f7ab000 borrows vfi from previous 7f7e8f796000
(00.019425) vma 7f7e8f9aa000 borrows vfi from previous 7f7e8f7ab000
(00.019433) vma 7f7e8f9ab000 borrows vfi from previous 7f7e8f9aa000
(00.019462) Found regular file mapping, OK
(00.019470) Dumping path for -3 fd via self 16 [/usr/lib64/ld-2.17.so]
(00.019486) Found regular file mapping, OK
(00.019494) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libmanagement.so]
(00.019507) vma 7f7e8f9d5000 borrows vfi from previous 7f7e8f9d1000
(00.019512) vma 7f7e8f9d6000 borrows vfi from previous 7f7e8f9d5000
(00.019519) Found regular file mapping, OK
(00.019527) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libzip.so]
(00.019540) vma 7f7e8f9de000 borrows vfi from previous 7f7e8f9d7000
(00.019551) vma 7f7e8f9df000 borrows vfi from previous 7f7e8f9de000
(00.019589) vma 7f7e8f9e0000 borrows vfi from previous 7f7e8f9df000
(00.019598) Found regular file mapping, OK
(00.019607) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libnet.so]
(00.019623) vma 7f7e8f9f6000 borrows vfi from previous 7f7e8f9e1000
(00.019629) vma 7f7e8f9f7000 borrows vfi from previous 7f7e8f9f6000
(00.019638) Found regular file mapping, OK
(00.019646) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libnio.so]
(00.019661) vma 7f7e8fa0b000 borrows vfi from previous 7f7e8f9f8000
(00.019667) vma 7f7e8fa0c000 borrows vfi from previous 7f7e8fa0b000
(00.019730) Found regular file mapping, OK
(00.019739) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libjava.so]
(00.019755) vma 7f7e8fa81000 borrows vfi from previous 7f7e8fa5c000
(00.019761) vma 7f7e8fa82000 borrows vfi from previous 7f7e8fa81000
(00.019767) vma 7f7e8fa83000 borrows vfi from previous 7f7e8fa82000
(00.019820) Found regular file mapping, OK
(00.019830) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libjimage.so]
(00.019846) vma 7f7e8faa8000 borrows vfi from previous 7f7e8fa8d000
(00.019852) vma 7f7e8faaa000 borrows vfi from previous 7f7e8faa8000
(00.019877) Found regular file mapping, OK
(00.019889) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libjli.so]
(00.019907) vma 7f7e8fbbf000 borrows vfi from previous 7f7e8fbb0000
(00.019936) vma 7f7e8fbc0000 borrows vfi from previous 7f7e8fbbf000
(00.019950) Found regular file mapping, OK
(00.019959) Dumping path for -3 fd via self 16 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/libextnet.so]
(00.019977) vma 7f7e8fbc7000 borrows vfi from previous 7f7e8fbc5000
(00.019983) vma 7f7e8fbc8000 borrows vfi from previous 7f7e8fbc7000
(00.020034) Found regular file mapping, OK
(00.020045) vma 7f7e8fbce000 borrows vfi from previous 7f7e8fbcd000
(00.020068) Collected, longest area occupies 487424 pages
(00.020070) 0x83400000-0x87d00000 (74752K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020075) 0x87d00000-0x88b00000 (14336K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020078) 0x88b00000-0x88e00000 (3072K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020080) 0x88e00000-0xffe00000 (1949696K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020082) 0xffe00000-0xffe77000 (476K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xc8d000 reg fp  shmid: 0x1
(00.020085) 0xffe77000-0xfff00000 (548K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020087) 0xfff00000-0xfff78000 (480K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xc15000 reg fp  shmid: 0x1
(00.020093) 0xfff78000-0x100000000 (544K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020095) 0x55ad632e0000-0x55ad632e2000 (8K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.020098) 0x55ad632e3000-0x55ad632e4000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x2000 reg fp  shmid: 0x2
(00.020100) 0x55ad632e4000-0x55ad632e5000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x3000 reg fp  shmid: 0x2
(00.020102) 0x55ad64393000-0x55ad643db000 (288K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.020104) 0x7f7ddc000000-0x7f7ddc021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020107) 0x7f7ddc021000-0x7f7de0000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020109) 0x7f7de4000000-0x7f7de5b0f000 (27708K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020111) 0x7f7de5b0f000-0x7f7de8000000 (37828K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020114) 0x7f7de8000000-0x7f7de86fc000 (7152K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020116) 0x7f7de86fc000-0x7f7dec000000 (58384K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020117) 0x7f7dec000000-0x7f7dec021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020119) 0x7f7dec021000-0x7f7df0000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020121) 0x7f7df0000000-0x7f7df006f000 (444K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020123) 0x7f7df006f000-0x7f7df4000000 (65092K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020125) 0x7f7df4000000-0x7f7df4021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020126) 0x7f7df4021000-0x7f7df8000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020129) 0x7f7df9abd000-0x7f7e00000000 (103692K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x3
(00.020132) 0x7f7e00000000-0x7f7e00021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020135) 0x7f7e00021000-0x7f7e04000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020137) 0x7f7e04000000-0x7f7e04021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020139) 0x7f7e04021000-0x7f7e08000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020141) 0x7f7e08000000-0x7f7e0869a000 (6760K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020144) 0x7f7e0869a000-0x7f7e0c000000 (58776K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020146) 0x7f7e0e3f4000-0x7f7e0e3f9000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020149) 0x7f7e0e3f9000-0x7f7e0e4f5000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020151) 0x7f7e0e4f5000-0x7f7e0e4fa000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020153) 0x7f7e0e4fa000-0x7f7e0e5f6000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020156) 0x7f7e0e5f6000-0x7f7e0e5fb000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020158) 0x7f7e0e5fb000-0x7f7e0e6f7000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020161) 0x7f7e0e6f7000-0x7f7e0e6fc000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020164) 0x7f7e0e6fc000-0x7f7e0e7f8000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020166) 0x7f7e0e7f8000-0x7f7e0e7fd000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020169) 0x7f7e0e7fd000-0x7f7e0e8f9000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020171) 0x7f7e0e8f9000-0x7f7e0e8fe000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020173) 0x7f7e0e8fe000-0x7f7e0e9fa000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020176) 0x7f7e0e9fa000-0x7f7e0e9ff000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020181) 0x7f7e0e9ff000-0x7f7e0eafb000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020184) 0x7f7e0eafb000-0x7f7e0eb00000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020186) 0x7f7e0eb00000-0x7f7e0ebfc000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020189) 0x7f7e0ebfc000-0x7f7e0ec01000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020191) 0x7f7e0ec01000-0x7f7e0ecfd000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020194) 0x7f7e0ecfd000-0x7f7e0ed02000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020197) 0x7f7e0ed02000-0x7f7e0edfe000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020199) 0x7f7e0edfe000-0x7f7e0ee03000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020201) 0x7f7e0ee03000-0x7f7e0eeff000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020203) 0x7f7e0eeff000-0x7f7e0ef04000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020206) 0x7f7e0ef04000-0x7f7e0f000000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020208) 0x7f7e0f000000-0x7f7e0fbdd000 (12148K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x1000 reg fp  shmid: 0x1
(00.020210) 0x7f7e0fbdd000-0x7f7e10000000 (4236K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020212) 0x7f7e10000000-0x7f7e10040000 (256K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020215) 0x7f7e10040000-0x7f7e10080000 (256K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020217) 0x7f7e10080000-0x7f7e10100000 (512K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020219) 0x7f7e10100000-0x7f7e102e0000 (1920K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020221) 0x7f7e102e0000-0x7f7e10300000 (128K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020223) 0x7f7e10300000-0x7f7e10440000 (1280K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020225) 0x7f7e10440000-0x7f7e10480000 (256K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020227) 0x7f7e10480000-0x7f7e10640000 (1792K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020229) 0x7f7e10640000-0x7f7e10680000 (256K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020232) 0x7f7e10680000-0x7f7e10880000 (2048K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020234) 0x7f7e10880000-0x7f7e50000000 (1039872K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020236) 0x7f7e50000000-0x7f7e502a1000 (2692K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020238) 0x7f7e502a1000-0x7f7e54000000 (62844K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020240) 0x7f7e54000000-0x7f7e54400000 (4096K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020242) 0x7f7e54400000-0x7f7e54dc0000 (9984K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020245) 0x7f7e54dc0000-0x7f7e54e00000 (256K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020247) 0x7f7e54e00000-0x7f7e54f00000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020249) 0x7f7e54f00000-0x7f7e55000000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020251) 0x7f7e55000000-0x7f7e55500000 (5120K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020253) 0x7f7e55500000-0x7f7e55600000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020255) 0x7f7e55600000-0x7f7e55d00000 (7168K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020258) 0x7f7e55d00000-0x7f7e55e00000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020260) 0x7f7e55e00000-0x7f7e56140000 (3328K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020262) 0x7f7e56140000-0x7f7e56180000 (256K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020267) 0x7f7e56180000-0x7f7e56300000 (1536K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020269) 0x7f7e56300000-0x7f7e56400000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020271) 0x7f7e56400000-0x7f7e57500000 (17408K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020273) 0x7f7e57500000-0x7f7e57600000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020275) 0x7f7e57600000-0x7f7e57740000 (1280K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020277) 0x7f7e57740000-0x7f7e57780000 (256K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020280) 0x7f7e57780000-0x7f7e577d0000 (320K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020282) 0x7f7e577d0000-0x7f7e58000000 (8384K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020284) 0x7f7e58000000-0x7f7e58021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020286) 0x7f7e58021000-0x7f7e5c000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020288) 0x7f7e5c0c9000-0x7f7e5c0ca000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020290) 0x7f7e5c0ca000-0x7f7e5c0ce000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020293) 0x7f7e5c0ce000-0x7f7e5c1ca000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020295) 0x7f7e5c1ca000-0x7f7e5c1cb000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020297) 0x7f7e5c1cb000-0x7f7e5c1cf000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020299) 0x7f7e5c1cf000-0x7f7e5c2cb000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020301) 0x7f7e5c2cb000-0x7f7e5c2d0000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020303) 0x7f7e5c2d0000-0x7f7e5c3cc000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020305) 0x7f7e5c3cc000-0x7f7e5c3d1000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020308) 0x7f7e5c3d1000-0x7f7e5c4cd000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020310) 0x7f7e5c4cd000-0x7f7e5c4ce000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020312) 0x7f7e5c4ce000-0x7f7e5c4d2000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020314) 0x7f7e5c4d2000-0x7f7e5c5ce000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020316) 0x7f7e5c5ce000-0x7f7e5c5cf000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020318) 0x7f7e5c5cf000-0x7f7e5c5d3000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020320) 0x7f7e5c5d3000-0x7f7e5c6cf000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020323) 0x7f7e5c6cf000-0x7f7e5c6d0000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020325) 0x7f7e5c6d0000-0x7f7e5c6d4000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020327) 0x7f7e5c6d4000-0x7f7e5c7d0000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020329) 0x7f7e5c7d0000-0x7f7e5c7d1000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020331) 0x7f7e5c7d1000-0x7f7e5c7d5000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020333) 0x7f7e5c7d5000-0x7f7e5c8d1000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020335) 0x7f7e5c8d1000-0x7f7e5c8d2000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020338) 0x7f7e5c8d2000-0x7f7e5c8d6000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020340) 0x7f7e5c8d6000-0x7f7e5c9d2000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020342) 0x7f7e5c9d2000-0x7f7e5c9d7000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020344) 0x7f7e5c9d7000-0x7f7e5cad3000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020349) 0x7f7e5cad3000-0x7f7e5cad4000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020351) 0x7f7e5cad4000-0x7f7e5cad8000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020353) 0x7f7e5cad8000-0x7f7e5cbd4000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020355) 0x7f7e5cbd4000-0x7f7e5cbd5000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020357) 0x7f7e5cbd5000-0x7f7e5cbd9000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020360) 0x7f7e5cbd9000-0x7f7e5ccd5000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020362) 0x7f7e5ccd5000-0x7f7e5ccda000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020364) 0x7f7e5ccda000-0x7f7e5cdd6000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020366) 0x7f7e5cdd6000-0x7f7e5cddb000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020368) 0x7f7e5cddb000-0x7f7e5ced7000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020370) 0x7f7e5ced7000-0x7f7e5cedc000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020373) 0x7f7e5cedc000-0x7f7e5cfd8000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020375) 0x7f7e5cfd8000-0x7f7e5cfdd000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020377) 0x7f7e5cfdd000-0x7f7e5d0d9000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020379) 0x7f7e5d0d9000-0x7f7e5d0de000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020381) 0x7f7e5d0de000-0x7f7e5d1da000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020383) 0x7f7e5d1da000-0x7f7e5d1df000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020395) 0x7f7e5d1df000-0x7f7e5d2db000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020397) 0x7f7e5d2db000-0x7f7e5d2e0000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020399) 0x7f7e5d2e0000-0x7f7e5d3dc000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020402) 0x7f7e5d3dc000-0x7f7e5d3e1000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020403) 0x7f7e5d3e1000-0x7f7e5d4dd000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020405) 0x7f7e5d4dd000-0x7f7e5d4e2000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020407) 0x7f7e5d4e2000-0x7f7e5d5de000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020409) 0x7f7e5d5de000-0x7f7e5d5e3000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020411) 0x7f7e5d5e3000-0x7f7e5d6df000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020413) 0x7f7e5d6df000-0x7f7e5d6e4000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020414) 0x7f7e5d6e4000-0x7f7e5d7e0000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020416) 0x7f7e5d7e0000-0x7f7e5d7e5000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020418) 0x7f7e5d7e5000-0x7f7e5d8e1000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020420) 0x7f7e5d8e1000-0x7f7e5d8e6000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020422) 0x7f7e5d8e6000-0x7f7e5d9e2000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020423) 0x7f7e5d9e2000-0x7f7e5d9e7000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020425) 0x7f7e5d9e7000-0x7f7e5dae3000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020427) 0x7f7e5dae3000-0x7f7e5dae4000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020429) 0x7f7e5dae4000-0x7f7e5dae8000 (16K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020431) 0x7f7e5dae8000-0x7f7e5dbe4000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020435) 0x7f7e5dbe4000-0x7f7e5dbe9000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020437) 0x7f7e5dbe9000-0x7f7e5dce5000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020438) 0x7f7e5dce5000-0x7f7e5dcea000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020440) 0x7f7e5dcea000-0x7f7e5dde6000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020442) 0x7f7e5dde6000-0x7f7e5ddfc000 (88K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x4
(00.020444) 0x7f7e5ddfc000-0x7f7e5dffc000 (2048K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x4
(00.020446) 0x7f7e5dffc000-0x7f7e5dffd000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x4
(00.020448) 0x7f7e5dffd000-0x7f7e5dffe000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x4
(00.020450) 0x7f7e5dffe000-0x7f7e60000000 (32776K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020451) 0x7f7e60000000-0x7f7e60021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020453) 0x7f7e60021000-0x7f7e64000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020455) 0x7f7e64000000-0x7f7e64046000 (280K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020457) 0x7f7e64046000-0x7f7e68000000 (65256K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020459) 0x7f7e68000000-0x7f7e6805f000 (380K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020460) 0x7f7e6805f000-0x7f7e6c000000 (65156K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020462) 0x7f7e6c02c000-0x7f7e6c039000 (52K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x5
(00.020464) 0x7f7e6c039000-0x7f7e6c03b000 (8K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x5
(00.020466) 0x7f7e6c03b000-0x7f7e6c03c000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xe000 reg fp  shmid: 0x5
(00.020468) 0x7f7e6c03c000-0x7f7e6c042000 (24K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x6
(00.020470) 0x7f7e6c042000-0x7f7e6c241000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x6000 reg fp  shmid: 0x6
(00.020472) 0x7f7e6c241000-0x7f7e6c242000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5000 reg fp  shmid: 0x6
(00.020473) 0x7f7e6c242000-0x7f7e6c243000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x6000 reg fp  shmid: 0x6
(00.020475) 0x7f7e6c243000-0x7f7e6c249000 (24K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x7
(00.020477) 0x7f7e6c249000-0x7f7e6c348000 (1020K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x6000 reg fp  shmid: 0x7
(00.020479) 0x7f7e6c348000-0x7f7e6c349000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x5000 reg fp  shmid: 0x7
(00.020481) 0x7f7e6c34b000-0x7f7e6c350000 (20K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x8
(00.020483) 0x7f7e6c350000-0x7f7e6c351000 (4K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x5000 reg fp  shmid: 0x8
(00.020485) 0x7f7e6c351000-0x7f7e6c352000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5000 reg fp  shmid: 0x8
(00.020486) 0x7f7e6c352000-0x7f7e6c353000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x6000 reg fp  shmid: 0x8
(00.020488) 0x7f7e6c353000-0x7f7e6c358000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020490) 0x7f7e6c358000-0x7f7e6c454000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020492) 0x7f7e6c454000-0x7f7e6c455000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020494) 0x7f7e6c455000-0x7f7e6c555000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020496) 0x7f7e6c555000-0x7f7e6c55a000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020497) 0x7f7e6c55a000-0x7f7e6c656000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020499) 0x7f7e6c656000-0x7f7e6c65b000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020501) 0x7f7e6c65b000-0x7f7e6c757000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020505) 0x7f7e6c757000-0x7f7e6c758000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020507) 0x7f7e6c758000-0x7f7e6c858000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020509) 0x7f7e6c858000-0x7f7e6c85d000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020511) 0x7f7e6c85d000-0x7f7e6c959000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020512) 0x7f7e6c959000-0x7f7e6c95e000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020514) 0x7f7e6c95e000-0x7f7e6ca5a000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020516) 0x7f7e6ca5a000-0x7f7e6ca5f000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020518) 0x7f7e6ca5f000-0x7f7e6cb5b000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020520) 0x7f7e6cb5b000-0x7f7e6cb60000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020522) 0x7f7e6cb60000-0x7f7e6cc5c000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020523) 0x7f7e6cc5c000-0x7f7e6cc61000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020525) 0x7f7e6cc61000-0x7f7e6cd5d000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020527) 0x7f7e6cd5d000-0x7f7e6cd62000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020529) 0x7f7e6cd62000-0x7f7e6ce5e000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020530) 0x7f7e6ce5e000-0x7f7e6ce63000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020532) 0x7f7e6ce63000-0x7f7e6cf5f000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020534) 0x7f7e6cf5f000-0x7f7e6cf64000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020536) 0x7f7e6cf64000-0x7f7e6d060000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020538) 0x7f7e6d060000-0x7f7e6d065000 (20K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020539) 0x7f7e6d065000-0x7f7e6d161000 (1008K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020541) 0x7f7e6d161000-0x7f7e6d162000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020543) 0x7f7e6d162000-0x7f7e6d262000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020545) 0x7f7e6d262000-0x7f7e6d330000 (824K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x9
(00.020547) 0x7f7e6d330000-0x7f7e6d331000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xcd000 reg fp  shmid: 0x9
(00.020549) 0x7f7e6d331000-0x7f7e6d332000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xce000 reg fp  shmid: 0x9
(00.020550) 0x7f7e6d332000-0x7f7e6d3b3000 (516K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020552) 0x7f7e6d3b3000-0x7f7e6d3b4000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020554) 0x7f7e6d3b4000-0x7f7e6d4b4000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020556) 0x7f7e6d4b4000-0x7f7e6d4b5000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020558) 0x7f7e6d4b5000-0x7f7e6d6d9000 (2192K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020560) 0x7f7e6d6d9000-0x7f7e6d711000 (224K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020562) 0x7f7e6d711000-0x7f7e6d71d000 (48K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020563) 0x7f7e6d71d000-0x7f7e6f4dd000 (30464K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020565) 0x7f7e6f4dd000-0x7f7e6f609000 (1200K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020567) 0x7f7e6f609000-0x7f7e6f641000 (224K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020569) 0x7f7e6f641000-0x7f7e6f64d000 (48K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020571) 0x7f7e6f64d000-0x7f7e7140d000 (30464K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020575) 0x7f7e7140d000-0x7f7e71415000 (32K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020577) 0x7f7e71415000-0x7f7e71df5000 (10112K) prot 0x7 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020578) 0x7f7e71df5000-0x7f7e7894d000 (109920K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020580) 0x7f7e7894d000-0x7f7e78bbd000 (2496K) prot 0x7 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020582) 0x7f7e78bbd000-0x7f7e78edc000 (3196K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020584) 0x7f7e78edc000-0x7f7e7926c000 (3648K) prot 0x7 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020586) 0x7f7e7926c000-0x7f7e80415000 (116388K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020587) 0x7f7e80415000-0x7f7e88000000 (126892K) prot 0x1 flags 0x1 fdflags 0 st 0x81 off 0 reg fs  shmid: 0xa
(00.020589) 0x7f7e88000000-0x7f7e89a33000 (26828K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020591) 0x7f7e89a33000-0x7f7e8c000000 (38708K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020593) 0x7f7e8c003000-0x7f7e8c2a1000 (2680K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020595) 0x7f7e8c2a1000-0x7f7e8c2a2000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020597) 0x7f7e8c2a2000-0x7f7e8c3a2000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020598) 0x7f7e8c3a2000-0x7f7e8c3a3000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020600) 0x7f7e8c3a3000-0x7f7e8c4a3000 (1024K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020602) 0x7f7e8c4a3000-0x7f7e8c4a4000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020604) 0x7f7e8c4a4000-0x7f7e8c5c9000 (1172K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020607) 0x7f7e8c5c9000-0x7f7e8c5cf000 (24K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020610) 0x7f7e8c5cf000-0x7f7e8c5d1000 (8K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020612) 0x7f7e8c5d1000-0x7f7e8c989000 (3808K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020615) 0x7f7e8c989000-0x7f7e8c9af000 (152K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020617) 0x7f7e8c9af000-0x7f7e8c9b5000 (24K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020620) 0x7f7e8c9b5000-0x7f7e8c9b7000 (8K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020622) 0x7f7e8c9b7000-0x7f7e8cd6f000 (3808K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020625) 0x7f7e8cd6f000-0x7f7e8cd95000 (152K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020627) 0x7f7e8cd95000-0x7f7e8cd9b000 (24K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020629) 0x7f7e8cd9b000-0x7f7e8cd9d000 (8K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020631) 0x7f7e8cd9d000-0x7f7e8d155000 (3808K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020634) 0x7f7e8d155000-0x7f7e8d360000 (2092K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020636) 0x7f7e8d360000-0x7f7e8d443000 (908K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020638) 0x7f7e8d443000-0x7f7e8d457000 (80K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020640) 0x7f7e8d457000-0x7f7e8d52e000 (860K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020642) 0x7f7e8d52e000-0x7f7e8d53a000 (48K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0xb
(00.020645) 0x7f7e8d53a000-0x7f7e8d739000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0xb
(00.020647) 0x7f7e8d739000-0x7f7e8d73a000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xb000 reg fp  shmid: 0xb
(00.020649) 0x7f7e8d73a000-0x7f7e8d73b000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0xb
(00.020651) 0x7f7e8d73b000-0x7f7e8d741000 (24K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020656) 0x7f7e8d741000-0x7f7e8d842000 (1028K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0xc
(00.020658) 0x7f7e8d842000-0x7f7e8da41000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x101000 reg fp  shmid: 0xc
(00.020660) 0x7f7e8da41000-0x7f7e8da42000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x100000 reg fp  shmid: 0xc
(00.020663) 0x7f7e8da42000-0x7f7e8da43000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x101000 reg fp  shmid: 0xc
(00.020665) 0x7f7e8da43000-0x7f7e8da4a000 (28K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0xd
(00.020667) 0x7f7e8da4a000-0x7f7e8dc49000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0xd
(00.020669) 0x7f7e8dc49000-0x7f7e8dc4a000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x6000 reg fp  shmid: 0xd
(00.020671) 0x7f7e8dc4a000-0x7f7e8dc4b000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0xd
(00.020673) 0x7f7e8dc4b000-0x7f7e8ee5d000 (18504K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0xe
(00.020676) 0x7f7e8ee5d000-0x7f7e8ee5e000 (4K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x1212000 reg fp  shmid: 0xe
(00.020678) 0x7f7e8ee5e000-0x7f7e8ef17000 (740K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1212000 reg fp  shmid: 0xe
(00.020680) 0x7f7e8ef17000-0x7f7e8ef4c000 (212K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x12cb000 reg fp  shmid: 0xe
(00.020682) 0x7f7e8ef4c000-0x7f7e8efa8000 (368K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020684) 0x7f7e8efa8000-0x7f7e8f16c000 (1808K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0xf
(00.020687) 0x7f7e8f16c000-0x7f7e8f36b000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x1c4000 reg fp  shmid: 0xf
(00.020689) 0x7f7e8f36b000-0x7f7e8f36f000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1c3000 reg fp  shmid: 0xf
(00.020691) 0x7f7e8f36f000-0x7f7e8f371000 (8K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x1c7000 reg fp  shmid: 0xf
(00.020693) 0x7f7e8f371000-0x7f7e8f376000 (20K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020695) 0x7f7e8f376000-0x7f7e8f378000 (8K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x10
(00.020697) 0x7f7e8f378000-0x7f7e8f578000 (2048K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x2000 reg fp  shmid: 0x10
(00.020700) 0x7f7e8f578000-0x7f7e8f579000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x2000 reg fp  shmid: 0x10
(00.020702) 0x7f7e8f579000-0x7f7e8f57a000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x3000 reg fp  shmid: 0x10
(00.020704) 0x7f7e8f57a000-0x7f7e8f591000 (92K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x11
(00.020706) 0x7f7e8f591000-0x7f7e8f790000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x11
(00.020708) 0x7f7e8f790000-0x7f7e8f791000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x11
(00.020710) 0x7f7e8f791000-0x7f7e8f792000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x11
(00.020713) 0x7f7e8f792000-0x7f7e8f796000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020715) 0x7f7e8f796000-0x7f7e8f7ab000 (84K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x12
(00.020717) 0x7f7e8f7ab000-0x7f7e8f9aa000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x12
(00.020719) 0x7f7e8f9aa000-0x7f7e8f9ab000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x14000 reg fp  shmid: 0x12
(00.020721) 0x7f7e8f9ab000-0x7f7e8f9ac000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x12
(00.020723) 0x7f7e8f9ac000-0x7f7e8f9ce000 (136K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x13
(00.020726) 0x7f7e8f9d1000-0x7f7e8f9d5000 (16K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x14
(00.020728) 0x7f7e8f9d5000-0x7f7e8f9d6000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x3000 reg fp  shmid: 0x14
(00.020730) 0x7f7e8f9d6000-0x7f7e8f9d7000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x4000 reg fp  shmid: 0x14
(00.020734) 0x7f7e8f9d7000-0x7f7e8f9de000 (28K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x15
(00.020736) 0x7f7e8f9de000-0x7f7e8f9df000 (4K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0x15
(00.020737) 0x7f7e8f9df000-0x7f7e8f9e0000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0x15
(00.020740) 0x7f7e8f9e0000-0x7f7e8f9e1000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8000 reg fp  shmid: 0x15
(00.020742) 0x7f7e8f9e1000-0x7f7e8f9f6000 (84K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x16
(00.020745) 0x7f7e8f9f6000-0x7f7e8f9f7000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x14000 reg fp  shmid: 0x16
(00.020747) 0x7f7e8f9f7000-0x7f7e8f9f8000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x16
(00.020750) 0x7f7e8f9f8000-0x7f7e8fa0b000 (76K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x17
(00.020752) 0x7f7e8fa0b000-0x7f7e8fa0c000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x12000 reg fp  shmid: 0x17
(00.020755) 0x7f7e8fa0c000-0x7f7e8fa0d000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x13000 reg fp  shmid: 0x17
(00.020757) 0x7f7e8fa0d000-0x7f7e8fa55000 (288K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020759) 0x7f7e8fa55000-0x7f7e8fa5c000 (28K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020762) 0x7f7e8fa5c000-0x7f7e8fa81000 (148K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x18
(00.020764) 0x7f7e8fa81000-0x7f7e8fa82000 (4K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x25000 reg fp  shmid: 0x18
(00.020766) 0x7f7e8fa82000-0x7f7e8fa83000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x25000 reg fp  shmid: 0x18
(00.020768) 0x7f7e8fa83000-0x7f7e8fa84000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x26000 reg fp  shmid: 0x18
(00.020770) 0x7f7e8fa84000-0x7f7e8fa85000 (4K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020772) 0x7f7e8fa85000-0x7f7e8fa8d000 (32K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020775) 0x7f7e8fa8d000-0x7f7e8faa8000 (108K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x19
(00.020777) 0x7f7e8faa8000-0x7f7e8faaa000 (8K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1a000 reg fp  shmid: 0x19
(00.020779) 0x7f7e8faaa000-0x7f7e8faab000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x1c000 reg fp  shmid: 0x19
(00.020781) 0x7f7e8faab000-0x7f7e8faaf000 (16K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020783) 0x7f7e8faaf000-0x7f7e8fbb0000 (1028K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020785) 0x7f7e8fbb0000-0x7f7e8fbbf000 (60K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1a
(00.020788) 0x7f7e8fbbf000-0x7f7e8fbc0000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xe000 reg fp  shmid: 0x1a
(00.020790) 0x7f7e8fbc0000-0x7f7e8fbc1000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xf000 reg fp  shmid: 0x1a
(00.020792) 0x7f7e8fbc1000-0x7f7e8fbc2000 (4K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020794) 0x7f7e8fbc5000-0x7f7e8fbc7000 (8K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1b
(00.020796) 0x7f7e8fbc7000-0x7f7e8fbc8000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1000 reg fp  shmid: 0x1b
(00.020798) 0x7f7e8fbc8000-0x7f7e8fbc9000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x2000 reg fp  shmid: 0x1b
(00.020801) 0x7f7e8fbc9000-0x7f7e8fbca000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020803) 0x7f7e8fbca000-0x7f7e8fbcb000 (4K) prot 0x1 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020805) 0x7f7e8fbcb000-0x7f7e8fbcc000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020807) 0x7f7e8fbcc000-0x7f7e8fbcd000 (4K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020809) 0x7f7e8fbcd000-0x7f7e8fbce000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x21000 reg fp  shmid: 0x13
(00.020811) 0x7f7e8fbce000-0x7f7e8fbcf000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x22000 reg fp  shmid: 0x13
(00.020814) 0x7f7e8fbcf000-0x7f7e8fbd0000 (4K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020819) 0x7ffe8b4a7000-0x7ffe8b4c8000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.020822) 0x7ffe8b566000-0x7ffe8b568000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.020824) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.020826) ----------------------------------------
(00.020828)
(00.020830) Collecting fds (pid: 41314)
(00.020831) ----------------------------------------
(00.020850) Found 12 file descriptors
(00.020852) ----------------------------------------
(00.020862) Dump private signals of 41314
(00.020869) Dump private signals of 41315
(00.020897) Dump private signals of 41316
(00.020900) Dump private signals of 41317
(00.020903) Dump private signals of 41318
(00.020906) Dump private signals of 41319
(00.020908) Dump private signals of 41320
(00.020911) Dump private signals of 41321
(00.020913) Dump private signals of 41322
(00.020916) Dump private signals of 41323
(00.020918) Dump private signals of 41324
(00.020921) Dump private signals of 41325
(00.020923) Dump private signals of 41326
(00.020926) Dump private signals of 41327
(00.020929) Dump private signals of 41328
(00.020932) Dump private signals of 41329
(00.020934) Dump private signals of 41330
(00.020937) Dump private signals of 41331
(00.020940) Dump private signals of 41332
(00.020942) Dump private signals of 41333
(00.020945) Dump private signals of 41335
(00.020948) Dump private signals of 41366
(00.020951) Dump private signals of 41467
(00.020953) Dump private signals of 41468
(00.020956) Dump private signals of 41469
(00.020958) Dump private signals of 41470
(00.020961) Dump private signals of 41471
(00.020963) Dump private signals of 41472
(00.020966) Dump private signals of 41488
(00.020968) Dump private signals of 41492
(00.020971) Dump private signals of 41523
(00.020973) Dump private signals of 41526
(00.020976) Dump private signals of 41531
(00.020978) Dump private signals of 41532
(00.020981) Dump private signals of 41533
(00.020984) Dump private signals of 41541
(00.020986) Dump private signals of 41572
(00.020989) Dump private signals of 41573
(00.020992) Dump private signals of 41587
(00.020995) Dump private signals of 41618
(00.020997) Dump private signals of 42315
(00.021000) Dump private signals of 42317
(00.021003) Dump private signals of 42318
(00.021005) Dump private signals of 42432
(00.021007) Dump private signals of 42433
(00.021009) Dump private signals of 42434
(00.021011) Dump private signals of 42435
(00.021014) Dump private signals of 42436
(00.021016) Dump private signals of 42437
(00.021018) Dump private signals of 42438
(00.021020) Dump private signals of 42439
(00.021023) Dump private signals of 42440
(00.021025) Dump private signals of 42441
(00.021027) Dump private signals of 42442
(00.021029) Dump shared signals of 41314
(00.021217) Parasite syscall_ip at 0x55ad632e0000
(00.021303) Set up parasite blob using memfd
(00.021323) Putting parasite blob into 0x7fcb1d8f4000->0x7f7e0d1d6000
(00.021364) Dumping general registers for 41314 in native mode
(00.021367) Dumping GP/FPU registers for 41314
(00.021381) x86: xsave runtime structure
(00.021383) x86: -----------------------
(00.021392) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.021395) x86: magic1:0x46505853 extended_size:2700 xstate_bv:0x2f7 xstate_size:2696
(00.021397) x86: xstate_bv: 0x2f7
(00.021399) x86: -----------------------
(00.021402) Putting tsock into pid 41314
(00.021441) Wait for parasite being daemonized...
pie: 41314: Running daemon thread leader
(00.021444) Wait for ack 2 on daemon socket
pie: 41314: __sent ack msg: 2 2 0
pie: 41314: Daemon waits for command
(00.021450) Fetched ack: 2 2 0
(00.021453) Parasite 41314 has been switched to daemon mode
(00.021456) vdso: Check vdso by pfn from pagemap
(00.021467) Sent msg to daemon 74 0 0
pie: 41314: __fetched msg: 74 0 0
(00.021469) Wait for ack 74 on daemon socket
pie: 41314: __sent ack msg: 74 74 0
(00.021473) Fetched ack: 74 74 0
pie: 41314: Daemon waits for command
(00.021515) Sent msg to daemon 74 0 0
pie: 41314: __fetched msg: 74 0 0
(00.021517) Wait for ack 74 on daemon socket
pie: 41314: __sent ack msg: 74 74 0
(00.021521) Fetched ack: 74 74 0
pie: 41314: Daemon waits for command
(00.021532) Sent msg to daemon 74 0 0
pie: 41314: __fetched msg: 74 0 0
(00.021535) Wait for ack 74 on daemon socket
pie: 41314: __sent ack msg: 74 74 0
(00.021538) Fetched ack: 74 74 0
pie: 41314: Daemon waits for command
(00.021564) Sent msg to daemon 74 0 0
pie: 41314: __fetched msg: 74 0 0
(00.021566) Wait for ack 74 on daemon socket
pie: 41314: __sent ack msg: 74 74 0
(00.021570) Fetched ack: 74 74 0
pie: 41314: Daemon waits for command
(00.021577) Sent msg to daemon 70 0 0
pie: 41314: __fetched msg: 70 0 0
(00.021580) Wait for ack 70 on daemon socket
pie: 41314: __sent ack msg: 70 70 0
(00.021587) Fetched ack: 70 70 0
pie: 41314: Daemon waits for command
(00.021591) sid=12703 pgid=41314 pid=41314
(00.021619)
(00.021620) Dumping opened files (pid: 41314)
(00.021623) ----------------------------------------
(00.021627) Sent msg to daemon 71 0 0
pie: 41314: __fetched msg: 71 0 0
pie: 41314: __sent ack msg: 71 71 0
pie: 41314: Daemon waits for command
(00.021645) Wait for ack 71 on daemon socket
(00.021649) Fetched ack: 71 71 0
(00.021663) 41314 fdinfo 0: pos:                0 flags:           104002/0
(00.021685) tty: Dumping tty 16 with id 0x1c
(00.021693) Dumping path for 0 fd via self 16 [/dev/pts/1]
(00.021699) Sent msg to daemon 73 0 0
pie: 41314: __fetched msg: 73 0 0
(00.021701) Wait for ack 73 on daemon socket
pie: 41314: __sent ack msg: 73 73 0
(00.021710) Fetched ack: 73 73 0
pie: 41314: Daemon waits for command
(00.021771) 41314 fdinfo 1: pos:           0xb117 flags:           100001/0
(00.021780) Dumping path for 1 fd via self 23 [/root/luogang05/crac/log/jdk-start-zulu.log]
(00.021791) Only file size could be stored for validation for file /root/luogang05/crac/log/jdk-start-zulu.log
(00.021800) 41314 fdinfo 2: pos:                0 flags:           104002/0
(00.021813) 41314 fdinfo 3: pos:                0 flags:           100000/0
(00.021819) Dumping path for 3 fd via self 25 [/root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/modules]
(00.021825) Only file size could be stored for validation for file /root/luogang05/crac/zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/lib/modules
(00.021833) 41314 fdinfo 4: pos:           0xab1a flags:           100000/0
(00.021839) Dumping path for 4 fd via self 26 [/root/luogang05/crac/3.2.0/cloudnative-consumer-2023.0.0-SNAPSHOT.jar]
(00.021845) Only file size could be stored for validation for file /root/luogang05/crac/3.2.0/cloudnative-consumer-2023.0.0-SNAPSHOT.jar
(00.021852) 41314 fdinfo 5: pos:                0 flags:           104000/0
(00.021857) Dumping path for 5 fd via self 27 [/root/luogang05/crac/3.2.0/cloudnative-consumer-2023.0.0-SNAPSHOT.jar]
(00.021861) Only file size could be stored for validation for file /root/luogang05/crac/3.2.0/cloudnative-consumer-2023.0.0-SNAPSHOT.jar
(00.021887) 41314 fdinfo 7: pos:                0 flags:             4002/0
(00.021893) sockets: Searching for socket 0x4dcbf family 10
(00.021896) Error (criu/sk-inet.c:189): inet: Connected TCP socket, consider using --tcp-established option.
(00.021901) ----------------------------------------
(00.021939) Error (criu/cr-dump.c:1637): Dump files (pid: 41314) failed with -1
(00.021950) Waiting for 41314 to trap
(00.021956) Daemon 41314 exited trapping
(00.021961) Sent msg to daemon 3 0 0
(00.021966) Force no-breakpoints restore
(00.021975) 41314 was trapped
(00.021977) 41314 (native) is going to execute the syscall 45, required is 15
(00.021989) 41314 was trapped
(00.021994) `- Expecting exit
(00.021999) 41314 was trapped
(00.022002) 41314 (native) is going to execute the syscall 186, required is 15
(00.022007) 41314 was trapped
(00.022009) `- Expecting exit
(00.022013) 41314 was trapped
(00.022016) 41314 (native) is going to execute the syscall 1, required is 15
pie: 41314: __fetched msg: 3 0 0
(00.022029) 41314 was trapped
(00.022031) `- Expecting exit
(00.022040) 41314 was trapped
(00.022042) 41314 (native) is going to execute the syscall 186, required is 15
(00.022047) 41314 was trapped
(00.022049) `- Expecting exit
(00.022053) 41314 was trapped
(00.022055) 41314 (native) is going to execute the syscall 186, required is 15
(00.022060) 41314 was trapped
(00.022061) `- Expecting exit
(00.022066) 41314 was trapped
(00.022068) 41314 (native) is going to execute the syscall 1, required is 15
pie: 41314: 41314: new_sp=0x7f7e0e3e9ac8 ip 0x7f7e8f583015
(00.022076) 41314 was trapped
(00.022078) `- Expecting exit
(00.022082) 41314 was trapped
(00.022085) 41314 (native) is going to execute the syscall 3, required is 15
(00.022093) 41314 was trapped
(00.022095) `- Expecting exit
(00.022100) 41314 was trapped
(00.022102) 41314 (native) is going to execute the syscall 3, required is 15
(00.022107) 41314 was trapped
(00.022108) `- Expecting exit
(00.022113) 41314 was trapped
(00.022115) 41314 (native) is going to execute the syscall 15, required is 15
(00.022123) 41314 was stopped
(00.022246) Unlock network
(00.022253) Unfreezing tasks into 1
(00.022255) 	Unseizing 41314 into 1
(00.022453) Error (criu/cr-dump.c:2063): Dumping FAILED.

You should see a log message suggesting to add -Djdk.crac.collect-fd-stacktraces=true - this will point to the stack trace where the FD is created. With this information you can raise a request to springboot to fix the CRaC support (assuming that this is opened from springboot libraries).

I also tried to use -Dspring.context.checkpoint=onRefresh to configure startup and add automatic checkpoint

zulu17.48.15-ca-crac-jdk17.0.10-linux_x64/bin/java -Djdk.crac.resource-policies=crac.yaml -Dspring.context.checkpoint=onRefresh -Djdk.crac.collect-fd-stacktraces=true  -XX:CRaCCheckpointTo=./tmp_checkpoint -jar 3.2.0/cloudnative-consumer-2023.0.0-SNAPSHOT.jar > log/jdk-start-zulu.log &

The error log of log/jdk-start-zulu.log is as follows

2024-04-16T16:39:00.447+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] o.s.c.support.DefaultLifecycleProcessor  : Triggering JVM checkpoint/restore
2024-04-16T16:39:00.458+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : Starting checkpoint
2024-04-16T16:39:00.462+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : /root/luogang05/crac/3.2.0/cloudnative-consumer-2023.0.0-SNAPSHOT.jar is recorded as always available on restore
2024-04-16T16:39:00.782+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : Socket sun.nio.ch.ServerSocketChannelImpl[/[0:0:0:0:0:0:0:0]:8666] was not closed by the application.
2024-04-16T16:39:00.782+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : To suppress the warning above use 'warn: false' in the resource policy.
2024-04-16T16:39:00.782+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : Socket Socket[addr=/10.174.**,port=9044,localport=60904] was not closed by the application.
2024-04-16T16:39:00.783+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : Socket Socket[addr=/10.174.**,port=9044,localport=60892] was not closed by the application.
2024-04-16T16:39:00.783+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : Socket Socket[addr=gravitation.baidu-int.com/10.11.**,port=80,localport=53516] was not closed by the application.
2024-04-16T16:39:00.784+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/sal.log was not closed by the application.
2024-04-16T16:39:00.784+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/formula/redis.log was not closed by the application.
2024-04-16T16:39:00.784+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/error.log was not closed by the application.
2024-04-16T16:39:00.785+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/formula/starlight.log was not closed by the application.
2024-04-16T16:39:00.785+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/invoke.log was not closed by the application.
2024-04-16T16:39:00.785+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/formula/gravity.log was not closed by the application.
2024-04-16T16:39:00.785+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/formula/smartjdbc.log was not closed by the application.
2024-04-16T16:39:00.786+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/access.log was not closed by the application.
2024-04-16T16:39:00.786+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/default.log was not closed by the application.
2024-04-16T16:39:00.786+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] jdk.crac                                 : File log/biz.log was not closed by the application.
2024-04-16T16:39:00.900+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] o.s.c.support.DefaultLifecycleProcessor  : Restarting Spring-managed lifecycle beans after JVM restore
2024-04-16T16:39:00.900+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to take CRaC checkpoint on refresh
2024-04-16T16:39:00.992+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] c.b.c.s.s.s.r.StarlightRegisterListener  : Shutdown the Executor pool for StarlightRegisterListener
2024-04-16T16:39:01.004+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] c.b.c.gravity.client.beat.BeatScheduler  : HeartBeat task stopped
2024-04-16T16:39:01.004+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] c.b.c.gravity.client.naming.ServerProxy  : AsyncHttpClient is closed in ServerProxy
2024-04-16T16:39:01.005+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] c.b.c.gravity.client.beat.BeatScheduler  : HeartBeat task stopped
2024-04-16T16:39:01.005+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] c.b.c.gravity.client.naming.ServerProxy  : AsyncHttpClient is closed in ServerProxy
2024-04-16T16:39:01.005+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] .c.s.b.a.r.FileConfigRefreshEventEmitter : FileConfigRefreshEventEmitter destroyed
2024-04-16T16:39:01.260+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] o.apache.catalina.core.StandardService   : Stopping service [Tomcat]
2024-04-16T16:39:01.279+08:00  WARN [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] o.a.c.loader.WebappClassLoaderBase       : The web application [ROOT] appears to have started a thread named [pool-2-thread-1] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.base@17.0.10/jdk.internal.misc.Unsafe.park(Native Method)
 java.base@17.0.10/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
 java.base@17.0.10/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1672)
 java.base@17.0.10/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
 java.base@17.0.10/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
 java.base@17.0.10/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
 java.base@17.0.10/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
 java.base@17.0.10/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
 java.base@17.0.10/java.lang.Thread.run(Thread.java:840)
2024-04-16T16:39:01.320+08:00  INFO [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] .s.b.a.l.ConditionEvaluationReportLogger :

Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
2024-04-16T16:39:01.346+08:00 ERROR [cpdinf-cloudnative-consumer,,,] 30892 --- [cloudnative-consumer] [           main] o.s.boot.SpringApplication               : Application run failed

org.springframework.context.ApplicationContextException: Failed to take CRaC checkpoint on refresh
	at org.springframework.context.support.DefaultLifecycleProcessor$CracDelegate.checkpointRestore(DefaultLifecycleProcessor.java:534)
	at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:193)
	at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:965)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:619)
	at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:753)
	at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:455)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:323)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1342)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1331)
	at com.baidu.cloud.demo.consumer.CloudnativeConsumerApp.main(CloudnativeConsumerApp.java:17)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:568)
	at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
	at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
	at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
Caused by: org.crac.CheckpointException: null
	at org.crac.Core$Compat.checkpointRestore(Core.java:144)
	at org.crac.Core.checkpointRestore(Core.java:237)
	at org.springframework.context.support.DefaultLifecycleProcessor$CracDelegate.checkpointRestore(DefaultLifecycleProcessor.java:528)
	... 17 common frames omitted
	Suppressed: java.nio.channels.IllegalSelectorException: null
		at java.base/sun.nio.ch.EPollSelectorImpl.beforeCheckpoint(EPollSelectorImpl.java:395)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.invokeBeforeCheckpoint(AbstractContext.java:43)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.beforeCheckpoint(AbstractContext.java:58)
		at java.base/jdk.internal.crac.mirror.impl.BlockingOrderedContext.beforeCheckpoint(BlockingOrderedContext.java:64)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.invokeBeforeCheckpoint(AbstractContext.java:43)
		at java.base/jdk.internal.crac.mirror.impl.AbstractContext.beforeCheckpoint(AbstractContext.java:58)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore1(Core.java:153)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:286)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:265)
		at jdk.crac/jdk.crac.Core.checkpointRestore(Core.java:72)
		at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
		at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
		at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
		at java.base/java.lang.reflect.Method.invoke(Method.java:568)
		at org.crac.Core$Compat.checkpointRestore(Core.java:141)
		... 19 common frames omitted
	Suppressed: jdk.internal.crac.mirror.impl.CheckpointOpenResourceException: FD fd=28 type=unknown path=anon_inode:[eventpoll]
		at java.base/jdk.internal.crac.mirror.Core.translateJVMExceptions(Core.java:117)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore1(Core.java:188)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:286)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:265)
		at jdk.crac/jdk.crac.Core.checkpointRestore(Core.java:72)
		at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
		at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
		at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
		at java.base/java.lang.reflect.Method.invoke(Method.java:568)
		at org.crac.Core$Compat.checkpointRestore(Core.java:141)
		... 19 common frames omitted
	Suppressed: jdk.internal.crac.mirror.impl.CheckpointOpenResourceException: FD fd=29 type=unknown path=anon_inode:[eventfd]
		at java.base/jdk.internal.crac.mirror.Core.translateJVMExceptions(Core.java:117)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore1(Core.java:188)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:286)
		at java.base/jdk.internal.crac.mirror.Core.checkpointRestore(Core.java:265)
		at jdk.crac/jdk.crac.Core.checkpointRestore(Core.java:72)
		at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
		at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
		at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
		at java.base/java.lang.reflect.Method.invoke(Method.java:568)
		at org.crac.Core$Compat.checkpointRestore(Core.java:141)
		... 19 common frames omitted

Oh sorry, I did not notice that the error is coming from the native FD detection (rather than from Java counterpart). In that case the system property can't trace it, and policies won't be applied - Java part simply won't know about the FD. In that case I usually debug with strace -f -k to see where the FD is opened: https://github.com/CRaC/docs/blob/master/debugging.md#file-descriptors-in-native-code . The dump would fail afterwards (as both strace and CRIU use ptrace on the process and there can be only one tracer) but it won't matter for debugging.

In your second comment you got over the native FD checks in CRaC (I guess that policies made the FD ignored), but it failed in CRIU - it didn't know how to reliably persist an open socket.

any way to have the descriptor policy be applied to native FD open files rather Java only processes?

Not at this point.

Architecturally, we want to apply the policies on the resource level - e.g. FileOutputStream, not straight on the FileDescriptor (the fact that we support FD policies even in FileDescriptor class is rather a last line of defense than a preferred way). So technically the native code could consult FD policies upon detection of open FD, but it doesn't fit well into the picture.

Have you figured out what resource does open the epollfd? Could that be Netty? I've tried to add automatic close there but the dependency to org.crac was not welcome, so Spring might need to invoke methods introduced in another PR.

In the lambdas I am testing we've got AWS SSM, MongoDB and Kafka and by the looks of it the sockets don't get closed for the snapshot to be taken as I am getting opensocket exceptions. When I use a file descriptor to close all sockets I get the same generic CheckpointOpenResourceException: FD fd=29 type=unknown path=anon_inode:[eventfd] error so I don't know what file is still open? So not sure how I can deal with closing all open files & sockets properly before the snapshot to be taken?

@tzvetkovg It is the application responsible for closing those FD - the configurable policies is rather a workaround for some usecases, not a solution that should do it all. So, to reiterate it's application responsibility to close it => probably task for Springboot guys.
Did you have any chance to strace the application to figure out where the FD 29 comes from?

sorry but that's making CRAC quite limited/unusable for complex APPS using spring boot, kafka, mongoDB etc. as closing of the open socket/files functionality is not supported out of the box and by the looks of it spring boot hasn't yet implemented any mechanisms to do so automatically?

Closing e.g. a socket to the database transparently to the application (or to the framework) is something that's practically impossible to do reliably; you'd just blow the application up and hope that it survives that sort of interruption.

Can you put up a minimalistic application that demonstrates your problem? We have a good relationship with Springboot folks, so if we can pinpoint it we can cooperate to fix it in there.