From: Andrew Morton <akpm@osdl.org>
To: Chris Mason <mason@suse.com>
Cc: linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH] O_SYNC error handling fix
Date: Sun, 15 Jan 2006 23:58:52 -0800 [thread overview]
Message-ID: <20060115235852.36a8bcad.akpm@osdl.org> (raw)
In-Reply-To: <200601151943.51771.mason@suse.com>
Chris Mason <mason@suse.com> wrote:
>
>
> If we hit errors during generic_osync_inode(), generic_file_buffered_write
> will still return written ? written : status; This patch ensures the -EIO
> gets back up to userland at all times.
>
> diff -r 7e48cbfbccad mm/filemap.c
> --- a/mm/filemap.c Sat Jan 14 01:12:21 2006 +0800
> +++ b/mm/filemap.c Fri Jan 13 13:48:02 2006 -0500
> @@ -2026,7 +2026,6 @@ generic_file_buffered_write(struct kiocb
> balance_dirty_pages_ratelimited(mapping);
> cond_resched();
> } while (count);
> - *ppos = pos;
>
> if (cached_page)
> page_cache_release(cached_page);
> @@ -2047,10 +2046,24 @@ generic_file_buffered_write(struct kiocb
> * to buffered writes (block instantiation inside i_size). So we sync
> * the file data here, to try to honour O_DIRECT expectations.
> */
> - if (unlikely(file->f_flags & O_DIRECT) && written)
> + if (unlikely(file->f_flags & O_DIRECT) && status >= 0 && written)
> status = filemap_write_and_wait(mapping);
>
> pagevec_lru_add(&lru_pvec);
> +
> + /*
> + * We must let know userspace if something hasn't been written
> + * correctly. If we got an I/O error it means we got an hardware
> + * failure, anything can be happening to the on-disk data,
> + * letting know userspace that a bit of data might have been
> + * written correctly on disk is a very low priority, compared
> + * to letting know userspace that some data has _not_ been
> + * written at all.
> + */
> + if (unlikely(status == -EIO))
> + return status;
> + *ppos = pos;
> +
> return written ? written : status;
> }
> EXPORT_SYMBOL(generic_file_buffered_write);
The patch does more than this. It also changes the O_DIRECT logic and it
also refuses to update the file position on I/O errors.
Probably reasonable changes, but I'd like to have your description of why
these changes were made please.
The patch also makes write() non-linuxy. We normally return a short write
on errors. In this case I'd say that returning 0 (and not updating f_pos)
would be appropriate?
next prev parent reply other threads:[~2006-01-16 7:59 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-01-16 0:43 [PATCH] O_SYNC error handling fix Chris Mason
2006-01-16 7:58 ` Andrew Morton [this message]
2006-01-16 14:26 ` Chris Mason
2006-01-16 20:11 ` Andrew Morton
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=20060115235852.36a8bcad.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=mason@suse.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;
as well as URLs for NNTP newsgroup(s).