FS/XFS testing framework
 help / color / mirror / Atom feed
From: Mikulas Patocka <mpatocka@redhat.com>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: Eryu Guan <eguan@redhat.com>, Zorro Lang <zlang@kernel.org>,
	fstests@vger.kernel.org,
	Kent Overstreet <kent.overstreet@linux.dev>
Subject: Re: [PATCH] generic/558: limit the number of spawned subprocesses
Date: Wed, 12 Jul 2023 11:57:49 +0200 (CEST)	[thread overview]
Message-ID: <95f466a-56ef-291f-cad4-474617814a19@redhat.com> (raw)
In-Reply-To: <20230711234439.GC11442@frogsfrogsfrogs>



On Tue, 11 Jul 2023, Darrick J. Wong wrote:

> On Tue, Jul 11, 2023 at 05:51:42PM +0200, Mikulas Patocka wrote:
> > When I run the test 558 on bcachefs, it works like a fork-bomb and kills
> > the machine. The reason is that the "while" loop spawns "create_file"
> > subprocesses faster than they are able to complete.
> > 
> > This patch fixes the crash by limiting the number of subprocesses to 128.
> > 
> > Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
> > 
> > ---
> >  tests/generic/558 |    1 +
> >  1 file changed, 1 insertion(+)
> > 
> > Index: xfstests-dev/tests/generic/558
> > ===================================================================
> > --- xfstests-dev.orig/tests/generic/558
> > +++ xfstests-dev/tests/generic/558
> > @@ -48,6 +48,7 @@ echo "Create $((loop * file_per_dir)) fi
> >  while [ $i -lt $loop ]; do
> >  	create_file $SCRATCH_MNT/testdir $file_per_dir $i >>$seqres.full 2>&1 &
> >  	let i=$i+1
> > +	if [ $((i % 128)) = 0 ]; then wait; fi
> 
> Hm.  $loop is (roughly) the number of free inodes divided by 1000.  This
> test completes nearly instantly on XFS; how many free inodes does
> bcachefs report after _scratch_mount?
> 
> XFS reports ~570k inodes, so it's "only" starting 570 processes.
> 
> I think it's probably wise to clamp $loop to something sane, but let's
> get to the bottom of how the math went wrong and we got a forkbomb.
> 
> --D

bcachefs reports 14509106 total inodes (for a 1GB filesystem)

As the test proceeds, the number of total inodes (as well as the number of 
free inodes) decreases.

Mikulas


  parent reply	other threads:[~2023-07-12  9:58 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-11 15:51 [PATCH] generic/558: limit the number of spawned subprocesses Mikulas Patocka
2023-07-11 23:44 ` Darrick J. Wong
2023-07-12  1:09   ` Kent Overstreet
2023-07-12  5:15     ` Amir Goldstein
2023-07-12 10:10     ` Mikulas Patocka
2023-07-12 14:52       ` Kent Overstreet
2023-07-12 17:59         ` Mikulas Patocka
2023-07-12 18:35           ` Kent Overstreet
2023-07-12  9:57   ` Mikulas Patocka [this message]
2023-07-12 22:05     ` Darrick J. Wong
2023-07-12 18:40 ` Zorro Lang
2023-07-13  1:44   ` Theodore Ts'o
2023-07-13  1:48 ` Darrick J. Wong
2023-07-13 15:08   ` Mikulas Patocka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=95f466a-56ef-291f-cad4-474617814a19@redhat.com \
    --to=mpatocka@redhat.com \
    --cc=djwong@kernel.org \
    --cc=eguan@redhat.com \
    --cc=fstests@vger.kernel.org \
    --cc=kent.overstreet@linux.dev \
    --cc=zlang@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox