From: "Darrick J. Wong" <djwong@kernel.org>
To: Bill O'Donnell <bodonnel@redhat.com>
Cc: cem@kernel.org, stable@vger.kernel.org, jlayton@kernel.org,
linux-xfs@vger.kernel.org, hch@lst.de
Subject: Re: [PATCHSET v2] xfs: proposed bug fixes for 6.13
Date: Wed, 4 Dec 2024 22:42:43 -0800 [thread overview]
Message-ID: <20241205064243.GD7837@frogsfrogsfrogs> (raw)
In-Reply-To: <Z1EBXqpMWGL306sh@redhat.com>
On Wed, Dec 04, 2024 at 07:26:54PM -0600, Bill O'Donnell wrote:
> On Tue, Dec 03, 2024 at 07:02:23PM -0800, Darrick J. Wong wrote:
> > Hi all,
> >
> > Here are even more bugfixes for 6.13 that have been accumulating since
> > 6.12 was released.
> >
> > If you're going to start using this code, I strongly recommend pulling
> > from my git trees, which are linked below.
> >
> > With a bit of luck, this should all go splendidly.
> > Comments and questions are, as always, welcome.
> >
> > --D
>
> Hi Darrick-
>
> I must ask, why are these constant bug fixes and fixes for fixes, and
> fixes for fixes for fixes often appearing? It's worrying that xfs is
Roughly speaking, the ~35 bugfixes can be split into three categories:
1) Our vaunted^Wshitty review process didn't catch various coding bugs,
and testing didn't trip over them until I started (ab)using precommit
hooks for spot checking of inode/dquot/buffer log items.
2) Most of the metadir/rtgroups fixes are for things that hch reworked
towards the end of the six years the patchset has been under
development, and that introduced bugs. Did it make things easier for a
second person to understand? Yes.
3) The rest are mostly cases of the authors not fully understanding the
subtleties of that which they were constructing (myself included!) and
lucking out that the errors cancelled each other out until someone
started wanting to use that code for a slightly different purpose, which
wouldn't be possible until the bug finally got fixed.
4) The dquot buffer changes have been a known problem since dchinner
decided that RMW cycles in the AIL with inode buffers was having very
bad effects on reclaim performance. Nobody stepped up to convert dquots
(even though I noted this at the time) so here I am years later because
the mm got pissy at us in 6.12.
5) XFS lit up a lot of new functionality this year, which means the code
is ripe with bugfixing opportunities where cognitive friction comes into
play.
> becoming rather dodgy these days. Do things need to be this
> complicated?
Yeah, they do. We left behind the kindly old world where people didn't
feed computers fuzzed datafiles and nobody got fired for a computer
crashing periodically. Nowadays it seems that everything has to be
bulletproofed AND fast. :(
--D
> -Bill
>
>
> >
> > kernel git tree:
> > https://git.kernel.org/cgit/linux/kernel/git/djwong/xfs-linux.git/log/?h=proposed-fixes-6.13
> > ---
> > Commits in this patchset:
> > * xfs: don't move nondir/nonreg temporary repair files to the metadir namespace
> > * xfs: don't crash on corrupt /quotas dirent
> > * xfs: check pre-metadir fields correctly
> > * xfs: fix zero byte checking in the superblock scrubber
> > * xfs: return from xfs_symlink_verify early on V4 filesystems
> > * xfs: port xfs_ioc_start_commit to multigrain timestamps
> > ---
> > fs/xfs/libxfs/xfs_symlink_remote.c | 4 ++
> > fs/xfs/scrub/agheader.c | 66 ++++++++++++++++++++++++++++--------
> > fs/xfs/scrub/tempfile.c | 3 ++
> > fs/xfs/xfs_exchrange.c | 14 ++++----
> > fs/xfs/xfs_qm.c | 7 ++++
> > 5 files changed, 71 insertions(+), 23 deletions(-)
> >
> >
>
>
next prev parent reply other threads:[~2024-12-05 6:42 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-04 3:02 [PATCHSET v2] xfs: proposed bug fixes for 6.13 Darrick J. Wong
2024-12-04 3:02 ` [PATCH 1/6] xfs: don't move nondir/nonreg temporary repair files to the metadir namespace Darrick J. Wong
2024-12-04 8:24 ` Christoph Hellwig
2024-12-05 6:14 ` Darrick J. Wong
2024-12-05 6:46 ` Christoph Hellwig
2024-12-05 7:16 ` Darrick J. Wong
2024-12-04 3:02 ` [PATCH 2/6] xfs: don't crash on corrupt /quotas dirent Darrick J. Wong
2024-12-04 8:24 ` Christoph Hellwig
2024-12-04 3:03 ` [PATCH 3/6] xfs: check pre-metadir fields correctly Darrick J. Wong
2024-12-04 8:25 ` Christoph Hellwig
2024-12-04 3:03 ` [PATCH 4/6] xfs: fix zero byte checking in the superblock scrubber Darrick J. Wong
2024-12-04 8:27 ` Christoph Hellwig
2024-12-05 5:54 ` Darrick J. Wong
2024-12-05 6:48 ` Christoph Hellwig
2024-12-05 7:17 ` Darrick J. Wong
2024-12-04 3:03 ` [PATCH 5/6] xfs: return from xfs_symlink_verify early on V4 filesystems Darrick J. Wong
2024-12-04 8:27 ` Christoph Hellwig
2024-12-04 3:03 ` [PATCH 6/6] xfs: port xfs_ioc_start_commit to multigrain timestamps Darrick J. Wong
2024-12-04 4:01 ` Jeff Layton
2024-12-04 8:28 ` Christoph Hellwig
2024-12-05 1:26 ` [PATCHSET v2] xfs: proposed bug fixes for 6.13 Bill O'Donnell
2024-12-05 6:42 ` Darrick J. Wong [this message]
2024-12-05 6:52 ` Bill O'Donnell
2024-12-05 6:58 ` Christoph Hellwig
2024-12-05 7:04 ` Bill O'Donnell
2024-12-05 7:30 ` Bill O'Donnell
2024-12-05 7:39 ` Darrick J. Wong
2024-12-05 7:33 ` Darrick J. Wong
2024-12-05 7:40 ` Bill O'Donnell
2024-12-05 7:46 ` Bill O'Donnell
2024-12-05 8:02 ` Bill O'Donnell
2024-12-05 8:39 ` Greg KH
2024-12-05 8:47 ` Bill O'Donnell
2024-12-05 7:57 ` Darrick J. Wong
2024-12-05 16:11 ` Bill O'Donnell
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=20241205064243.GD7837@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=bodonnel@redhat.com \
--cc=cem@kernel.org \
--cc=hch@lst.de \
--cc=jlayton@kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=stable@vger.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