Hi all,
I'm running dynamoRIO in a docker container (`fedora:38`). The run is very simple:
`drrun -- /usr/sbin/sshd -D -e`, i.e., simply starting an SSH server. However, this is super slow. And even if the server started, it cannot handle any request because it's so slow that all connections to it are time out.
After checking the logs `drrun -debug -loglevel 4 -logdir /root -- /usr/sbin/sshd -D -e`. I found there are numerous syscall of close files (as shown below). Looks these file close calls cause a lot of overhead. Why are there so many file close syscalls? It looks not normal. Thank you for you comments on this issue!
```
...
syscall: close fd 52491920
syscall: close fd 52491921
syscall: close fd 52491922
syscall: close fd 52491923
syscall: close fd 52491924
syscall: close fd 52491925
syscall: close fd 52491926
```