From: Christoph Hellwig <hch@lst.de>
To: Dave Chinner <david@fromorbit.com>
Cc: Christoph Hellwig <hch@lst.de>,
linux-xfs@vger.kernel.org, michaelcallahan@fb.com
Subject: Re: [PATCH 2/3] xfs: don't block the log commit handler for discards
Date: Wed, 19 Oct 2016 12:58:25 +0200 [thread overview]
Message-ID: <20161019105825.GA2279@lst.de> (raw)
In-Reply-To: <20161017232908.GY23194@dastard>
On Tue, Oct 18, 2016 at 10:29:08AM +1100, Dave Chinner wrote:
> > + if (args.fsbno == NULLFSBLOCK && trydiscard) {
> > + trydiscard = false;
> > + flush_workqueue(xfs_discard_wq);
> > + goto retry;
> > + }
>
> So this is the new behaviour that triggers flushing of the discard
> list rather than having it occur from a log force inside
> xfs_extent_busy_update_extent().
>
> However, xfs_extent_busy_update_extent() also has backoff when it
> finds an extent on the busy list being discarded, which means it
> could spin waiting for the discard work to complete.
>
> Wouldn't it be better to trigger this workqueue flush in
> xfs_extent_busy_update_extent() in both these cases so that the
> behaviour remains the same for userdata allocations hitting
> uncommitted busy extents, but also allow us to remove the spinning
> for allocations where the busy extent is currently being discarded?
So the current xfs_extent_busy_update_extent busy wait is something we
actually never hit at all - it's only hit when an extent under discard
is reused by an AGFL allocation, which basically does not happen.
I'm not feeling very eager to touch that corner case code, and would
rather leave it as-is.
The new flush deals with the case where we weren't able to find any space
due to the discard list. To honest I almost don't manage to trigger it
anymore once I found the issue fixed in patch 1. It might be possible
to even drop this retry entirely now.
> This creates one long bio chain with all the regions to discard on
> it, and then when all it completes we call xlog_discard_endio() to
> release all the busy extents.
>
> Why not pull the busy extent from the list and attach it to each
> bio returned and submit them individually and run per-busy extent
> completions? That will substantially reduce the latency of discard
> completions when there are long lists of extents to discard....
Because that would defeat the merging I currently do, which is
very effectice. It would also increase the size of the busy extent
structure as it would grow a work_struct, and increase lock contention
in the completion handler. All in all not that pretty, especially
as the most common number of discards are one digit or small two
digit. And this is just going to further decrease once I finish
up my block layer patches to allow multi-range discards by merging
multiple discard bios into a single request. With that even double
digit numbers of discards are fairly rare.
Now if we eventually want to split the completions I think we'll
need to start merging the extent_busy structures once they are added
to the CIL. That's quite a bit of effort and I'd like to avoid it
for now.
next prev parent reply other threads:[~2016-10-19 14:36 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-17 20:22 discard improvements Christoph Hellwig
2016-10-17 20:22 ` [PATCH 1/3] xfs: fix the AG loop in xfs_alloc_vextent for busy extents Christoph Hellwig
2016-10-19 13:48 ` Brian Foster
2016-10-21 12:48 ` Christoph Hellwig
2016-10-21 14:41 ` Brian Foster
2016-11-08 6:15 ` Dave Chinner
2016-11-10 19:17 ` Christoph Hellwig
2016-10-17 20:22 ` [PATCH 2/3] xfs: don't block the log commit handler for discards Christoph Hellwig
2016-10-17 23:29 ` Dave Chinner
2016-10-18 5:05 ` Christoph Hellwig
2016-10-19 10:58 ` Christoph Hellwig [this message]
2016-10-28 16:16 ` Michael Callahan
2016-10-31 15:16 ` Christoph Hellwig
2016-10-17 20:22 ` [PATCH 3/3] xfs: merge discard requests Christoph Hellwig
2016-10-28 10:11 ` discard improvements Avi Kivity
2016-10-31 15:14 ` Christoph Hellwig
2016-11-05 18:18 ` Avi Kivity
2016-11-06 16:36 ` Christoph Hellwig
2016-11-06 23:21 ` Dave Chinner
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=20161019105825.GA2279@lst.de \
--to=hch@lst.de \
--cc=david@fromorbit.com \
--cc=linux-xfs@vger.kernel.org \
--cc=michaelcallahan@fb.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.