From: Dave Chinner <david@fromorbit.com>
To: Lachlan McIlroy <lachlan@sgi.com>
Cc: xfs-dev <xfs-dev@sgi.com>, xfs-oss <xfs@oss.sgi.com>
Subject: Re: [PATCH] Re-dirty pages on I/O error
Date: Sat, 13 Sep 2008 14:19:30 +1000 [thread overview]
Message-ID: <20080913041930.GC5811@disturbed> (raw)
In-Reply-To: <48C8D8CD.7050508@sgi.com>
On Thu, Sep 11, 2008 at 06:37:33PM +1000, Lachlan McIlroy wrote:
> If we get an error in xfs_page_state_convert() - and it's not EAGAIN - then
> we throw away the dirty page without converting the delayed allocation. This
> leaves delayed allocations that can never be removed and confuses code that
> expects a flush of the file to clear them. We need to re-dirty the page on
> error so we can try again later or report that the flush failed.
>
> --- a/fs/xfs/linux-2.6/xfs_aops.c 2008-09-11 16:32:11.000000000 +1000
> +++ b/fs/xfs/linux-2.6/xfs_aops.c 2008-09-11 15:44:09.000000000 +1000
> @@ -1147,16 +1147,6 @@ error:
> if (iohead)
> xfs_cancel_ioend(iohead);
>
> - /*
> - * If it's delalloc and we have nowhere to put it,
> - * throw it away, unless the lower layers told
> - * us to try again.
> - */
> - if (err != -EAGAIN) {
> - if (!unmapped)
> - block_invalidatepage(page, 0);
> - ClearPageUptodate(page);
> - }
> return err;
> }
So we keep dirty pages around that we can't write back?
If we are in a low memory situation and the block device
has gone bad, that will prevent memory reclaim from making
progress.
i.e. if we have a bad disk, a user can now take down the system
by running it out of clean memory....
The EAGAIN case is for when we can't get the locks we
need during non-blocking writeback, which is a common case if
there is concurrent writes to this inode....
> @@ -1216,8 +1206,11 @@ xfs_vm_writepage(
> * then mark the page dirty again and leave the page
> * as is.
> */
> - if (current_test_flags(PF_FSTRANS) && need_trans)
> - goto out_fail;
> + if (current_test_flags(PF_FSTRANS) && need_trans) {
> + redirty_page_for_writepage(wbc, page);
> + unlock_page(page);
> + return -EAGAIN;
> + }
Should not return an error here - the redirty_page_for_writepage()
call effective says "can't do this right away, but no error
needs to be reported because it can be written again later".
Happens all the time with non-blocking writes.
> @@ -1231,20 +1224,14 @@ xfs_vm_writepage(
> * to real space and flush out to disk.
> */
> error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
> - if (error == -EAGAIN)
> - goto out_fail;
> - if (unlikely(error < 0))
> - goto out_unlock;
>
> - return 0;
> + if (error < 0) {
> + redirty_page_for_writepage(wbc, page);
> + unlock_page(page);
> + return error;
> + }
That needs the EAGAIN exception - that's not an error.
For EIO, though, we should really be invalidating the
page like we currently do. However, it should be silent as
per the current behaviour - a rate-limited log warning is
really needed here...
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
next prev parent reply other threads:[~2008-09-13 4:18 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-11 8:37 [PATCH] Re-dirty pages on I/O error Lachlan McIlroy
2008-09-11 10:33 ` Christoph Hellwig
2008-09-11 21:21 ` Eric Sandeen
2008-09-12 6:44 ` Lachlan McIlroy
2008-09-12 13:17 ` Eric Sandeen
2008-09-12 6:04 ` Lachlan McIlroy
2008-09-13 4:19 ` Dave Chinner [this message]
2008-09-15 3:22 ` Lachlan McIlroy
2008-09-16 4:01 ` Dave Chinner
2008-09-16 6:30 ` Lachlan McIlroy
-- strict thread matches above, loose matches on Subject: below --
2009-02-10 1:48 Lachlan McIlroy
2009-02-10 10:01 ` Dave Chinner
2009-02-10 23:33 ` Lachlan McIlroy
2009-02-15 20:05 ` Christoph Hellwig
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=20080913041930.GC5811@disturbed \
--to=david@fromorbit.com \
--cc=lachlan@sgi.com \
--cc=xfs-dev@sgi.com \
--cc=xfs@oss.sgi.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox