[resend; I can't keep track of which messages actually got NOSEND warnings and which ones just dropped off...] On Wed, Oct 28, 2020 at 07:44:07AM +0000, Christoph Hellwig wrote: > On Tue, Oct 27, 2020 at 12:02:21PM -0700, Darrick J. Wong wrote: > > From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > > > > If systemd is available, run each test in its own temporary systemd > > scope. This enables the test harness to forcibly clean up all of the > > test's child processes (if it does not do so itself) so that we can move > > into the post-test unmount and check cleanly. > > Can you explain what this mean in more detail? Most importantly what > problems it fixes. I'll answer these in reverse order. :) I frequently run fstests in "low" memory situations (2GB!) to force the kernel to do interesting things. There are a few tests like generic/224 and generic/561 that put processes in the background and occasionally trigger the OOM killer. Most of the time the OOM killer correctly shoots down fsstress or duperemove, but once in a while it's stupid enough to shoot down the test control process (i.e. tests/generic/224) instead. fsstress is still running in the background, and the one process that knew about that is dead. When the control process dies, ./check moves on to the post-test fsck, which fails because fsstress is still running and we can't unmount. After fsck fails, ./check moves on to the next test, which fails because fsstress is /still/ writing to the filesystem and we can't unmount or format. The end result is that that one OOM kill causes cascading test failures, and I have to re-start fstests to see if I get a clean(er) run. This is frustrating in the -rc1 days, where I more frequently observe problems with memory reclaim and OOM kills. (Note: those problems are usually gone by -rc3.) So, the solution I present in this patch is to teach ./check to try to run the test script in a systemd scope. If that succeeds, ./check will tell systemd to kill the scope when the test script exits and returns control to ./check. Concretely, this means that systemd creates a new cgroup, stuffs the processes in that cgroup, and when we kill the scope, systemd kills all the processes in that cgroup and deletes the cgroup. The end result is that fstests now has an easy way to ensure that /all/ child processes of a test are dead before we try to unmount the test and scratch devices. I've designed this to be optional, because not everyone does or wants or likes to run systemd, but it makes QA easier. Hmm, this might make a better commit log. I'll excerpt this into the patch message. --D