Michal Koutný
Michal Koutný
Would the mentioned telecom library update apply to older Androids too? Regardless of that, IIUC, the current implementation is not via telecom but "media player". Would it be simpler to...
Given there is no `"Unit process " PID_FMT " (%s) remains running after unit stopped."` message, I assume the suspicion of `(sd-pam)` is right. @LunarLambda could you catpure `/proc/$pid/stack` of...
I'm confused -- I remembered #26332 but you report seeing this with v252 which doesn't have it. That would mean something else than `(sd-pam)` caused arming of timeout timer on...
What cgroup mounts are visible inside the container? `grep cgroup /proc/self/mountinfo`
Possibly environment of nspawn `SYSTEMD_NSPAWN_UNIFIED_HIERARCHY=1` (consider this a debugging option). nspawn may have picked v1 inside container because the container image contains only old version of systemd (
``` 370 394 0:106 / /sys/fs/cgroup ro,nosuid,nodev,noexec shared:241 - tmpfs tmpfs ro,size=4096k,nr_inodes=1024,mode=755 this ^^^ ``` v2 mount is RO thus guest PID1 resorts to v1 named hierarchy. Not sure why...
IIUC the expectations mostly are: * `/tmp` is [volatile](https://github.com/systemd/systemd/blob/6915e6d914fdae903e881d5e2ea4409cde5abcb9/units/tmp.mount#L22) * `/var/tmp` is expected to be [cleaned up at times](https://github.com/systemd/systemd/blob/6915e6d914fdae903e881d5e2ea4409cde5abcb9/man/file-hierarchy.xml#L386), e.g. a sample at reboot and `systemd-tmpfiles-clean.timer` has `OnBootSec=15min`, so the...
This applies to entries marked with `!` that are by definition to be run at boot and the effect here is removal of entries that should have been removed by...
Suggestion 1: ```c #define PID_UNMAPPED 0 // use this macro in situation when checking for external pidns PIDs ``` Usage of the macro in conditions will be self-documenting without need...
> This is already discussed in https://github.com/systemd/systemd/pull/32534#discussion_r1595241541. I didn't notice that -- I believe that proves the strength of confusion it causes. The error is IMO fine since you can't...