Michal Koutný
Michal Koutný
@body20002 Do you use FUSE? Does the timeout modification from [comment](https://github.com/systemd/systemd/issues/37590#issuecomment-3053142952) help to progress with the suspend? (I'm asking whether a [patch](https://github.com/Werkov/systemd/commit/3aab100d454be233a36465a7324ff5428d24b567) like this would be effective.)
Yeah, disabling freezing user session is definitely effective too. @body20002 Would you be able to verify what effect does the following have on your setup? ``` echo 30 >/proc/sys/fs/fuse/max_request_timeout ```...
> which led me to think that I had a program prevent my system from suspend/hibernate Something that would dirty the FUSE fs and hence necessitate waiting for the sync...
> All of my FUSE mounts are local and all are on nvme Locality is less relevant, it's whether the FUSE server runs (or is frozen). > I tried echo...
I must say I liked the conceptual distinction between Protect* and Private* directives. The former standing for the system being protected from the service, the latter meaning service has it...
Currently, it only works with ELF (which was my recent use case) but it shouldn't be that hard to utilize the same for kdump vmcores. I considered searching vmcoreinfo in...
Seeing a handler in `/proc//status:SigCgt` doesn't guarantee that the signal handler is still installed by the time signal is sent (and vice versa). So I consider is only a user...
Thanks for the report, @Gpinchon . > issue accross both OpenSUSE TW and Fedora 40 for the past month or so. FTR, openSUSE TW has [not enabled the user.slice freezing](https://build.opensuse.org/projects/openSUSE:Factory/packages/systemd/files/5004-disable-session-freeze.patch?expand=1)...
The example in @hramrach's branch completes in acceptable number of seconds. I encountered `users/mkoutny/SLE15-SP7/rapidquilt-hang` that also apparently stops after output ``` Saving quilt backup files (last 100)... ``` and rapidquilt...
Thanks for the analysis and decoding `-q` option to me. That's exactly what I needed to resolve my problems. I think the search optimization is an exercise for later.