peripherals: 0.808 risc-v: 0.808 mistranslation: 0.799 graphic: 0.799 VMM: 0.793 user-level: 0.778 performance: 0.771 permissions: 0.769 architecture: 0.768 device: 0.766 TCG: 0.750 files: 0.748 register: 0.739 PID: 0.739 vnc: 0.738 kernel: 0.733 network: 0.730 semantic: 0.729 arm: 0.726 debug: 0.726 socket: 0.725 KVM: 0.704 assembly: 0.702 hypervisor: 0.701 ppc: 0.688 x86: 0.670 boot: 0.668 virtual: 0.662 i386: 0.529 LD_PREFIX option reads directories recursively in an endless loop If I run qemu user emulation with -L /path/to/my/sysroot/ in which also the proc and dev filesystem is mounted QEMU eats my memory until it gets killed by the kernel. According to the strace output it follows the symbolic links in the proc filesystem running forever in a recursive loop. The easiest solution would be to add in the function "add_dir_maybe" in the file util/path.c an additional check for symbolic links that it don't follow them. Also I don't really understand the need of doing this. A lot of ressources are wasted everytime QEMU-user is started just by having the directory structure in memory. In my case this are more than 20000 entries which QEMU is loading every time. On 28 October 2013 23:15, Sebastian Macke