https://bugs.kde.org/show_bug.cgi?id=502968
--- Comment #4 from mcer...@redhat.com --- Thanks Zygmunt. Seems like it's working fine with your code on Fedora-42: ---------------------------------------8<--------------------------------------------------------------- $ ./vg-in-place ../mount-insight/mount-insight |& tail } ==245624== ==245624== HEAP SUMMARY: ==245624== in use at exit: 0 bytes in 0 blocks ==245624== total heap usage: 3 allocs, 3 frees, 10,176 bytes allocated ==245624== ==245624== All heap blocks were freed -- no leaks are possible ==245624== ==245624== For lists of detected and suppressed errors, rerun with: -s ==245624== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) $ echo $? 0 $ $ ./vg-in-place --tool=none --trace-syscalls=yes ../mount-insight/mount-insight |& grep -e ^SYSCALL.*sys_statmount -e ^SYSCALL.*sys_listmount | head SYSCALL[245720,1](458) sys_listmount ( 0x1ffefffc20, 0x1ffeffdce0, 1000, 0x0)[sync] --> Success(0x14a) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) SYSCALL[245720,1](457) sys_statmount ( 0x1ffefffc20, 0x1ffeffcce0, 4096, 0x0)[sync] --> Success(0x0) $ $ $ strace -qq -elistmount,statmount --raw=all --signal='!all' -f -o /tmp/xxx ../mount-insight/mount-insight >&/dev/null; echo "-------------"; head /tmp/xxx ------------- 245973 listmount(0x7fff60ba1fc0, 0x7fff60ba0080, 0x3e8, 0) = 0x14a 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 245973 statmount(0x7fff60ba1fc0, 0x7fff60b9f080, 0x1000, 0) = 0 $ ---------------------------------------8<--------------------------------------------------------------- -- You are receiving this mail because: You are watching all bug changes.