From: NeilBrown <neilb@suse.com>
To: Jeff Layton <jlayton@redhat.com>, linux-fsdevel@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org,
tytso@mit.edu, jack@suse.cz, willy@infradead.org,
viro@zeniv.linux.org.uk
Subject: Re: [PATCH v2 07/17] fs: new infrastructure for writeback error handling and reporting
Date: Tue, 18 Apr 2017 08:53:29 +1000 [thread overview]
Message-ID: <87y3uytzme.fsf@notabene.neil.brown.name> (raw)
In-Reply-To: <1492038117.19286.6.camel@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 3104 bytes --]
On Wed, Apr 12 2017, Jeff Layton wrote:
> On Thu, 2017-04-13 at 07:55 +1000, NeilBrown wrote:
>> On Wed, Apr 12 2017, Jeff Layton wrote:
>>
>>
>> > +void __filemap_set_wb_error(struct address_space *mapping, int err)
>>
>> I was really hoping that this would be
>>
>> void __set_wb_error(wb_err_t *wb_err, int err)
>>
>> so
>>
>> Then nfs_context_set_write_error could become
>>
>> static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
>> {
>> __set_wb_error(&ctx->wb_err, error);
>> }
>>
>> and filemap_set_sb_error() would be:
>>
>> static inline void filemap_set_wb_error(struct address_space *mapping, int err)
>> {
>> /* Optimize for the common case of no error */
>> if (unlikely(err))
>> __set_wb_error(&mapping->f_wb_err, err);
>> }
>>
>> Similarly we would have
>> wb_err_t sample_wb_error(wb_err_t *wb_err)
>> {
>> ...
>> }
>>
>> and
>>
>> wb_err_t filemap_sample_wb_error(struct address_space *mapping)
>> {
>> return sample_wb_error(&mapping->f_wb_err);
>> }
>>
>> so nfs_file_fsync_commit() could have
>> ret = sample_wb_error(&ctx->wb_err);
>> in place of
>> ret = xchg(&ctx->error, 0);
>>
>> int filemap_report_wb_error(struct file *file)
>>
>> would become
>>
>> int filemap_report_wb_error(struct file *file, wb_err_t *err)
>>
>> or something.
>>
>> The address space is just one (obvious) place where the wb error can be
>> stored. The filesystem might have a different place with finer
>> granularity (nfs already does).
>>
>>
>
> I think it'd be much simpler to adapt NFS over to use the new
> infrastructure (I have a draft patch for that already). You'd lose the
> ability to track a different error for each nfs_open_context, but I'm
> not sure how valuable that is anyway. I'll need to think about that
> one...
From a technical perspective, it might be "simpler" but I contest "much
simpler". I think it would be easy to put one wb_err_t per
nfs_open_context, if the former were designed well (which itself would
be easy).
From a political perspective, I doubt it would be simple. NFS is the
way it is for a reason, and convincing an author that their reason is
not valid tends to be harder than most technical issues.
(looking to history...
the 'error' field was added to the nfs_open_context in
Commit: 6caf69feb23a ("NFSv2/v3/v4: Place NFS nfs_page shared data into a single structure that hangs off filp->private_data. As a side effect, this also cleans up the NFSv4 private file state info.")
in 2.6.12. Prior to that file->f_error was used.
Prior to commit 9ffb8c3a1955 ("Import 2.2.3pre1") (which has no comment)
errors were ... interesting. Look for nfs_check_error in
commit d9c0ffee4db7 ("Import 2.1.128") and notice the use of current->pid!!
All commits from the history.git tree.
)
It is quite possible for an NFS server to return different errors to
different users. It might be odd, but it is possible. Should an error
that affects one user pollute all other users?
Thanks,
NeilBrown
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
next prev parent reply other threads:[~2017-04-17 22:53 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-12 12:05 [PATCH v2 00/17] fs: introduce new writeback error reporting and convert existing API as a wrapper around it Jeff Layton
2017-04-12 12:05 ` [PATCH v2 01/17] mm: drop "wait" parameter from write_one_page Jeff Layton
2017-04-12 12:15 ` Jan Kara
2017-04-12 14:27 ` Matthew Wilcox
2017-04-12 14:34 ` Jeff Layton
2017-04-12 15:12 ` Dave Kleikamp
2017-04-12 12:05 ` [PATCH v2 02/17] mm: fix mapping_set_error call in me_pagecache_dirty Jeff Layton
2017-04-12 12:16 ` Jan Kara
2017-04-12 14:28 ` Matthew Wilcox
2017-04-12 12:06 ` [PATCH v2 03/17] buffer: use mapping_set_error instead of setting the flag Jeff Layton
2017-04-12 12:17 ` Jan Kara
2017-04-12 14:29 ` Matthew Wilcox
2017-04-12 12:06 ` [PATCH v2 04/17] ext2: don't test/clear AS_EIO flag Jeff Layton
2017-04-12 12:29 ` Jan Kara
2017-04-12 12:30 ` Jeff Layton
2017-04-12 12:06 ` [PATCH v2 05/17] orangefs: don't call filemap_write_and_wait from fsync Jeff Layton
2017-04-12 12:06 ` [PATCH v2 06/17] mm: doc comment for scary spot in write_one_page Jeff Layton
2017-04-12 13:01 ` Jeff Layton
2017-04-12 14:38 ` Matthew Wilcox
2017-04-12 15:52 ` Jeff Layton
2017-04-12 21:36 ` NeilBrown
2017-04-12 22:55 ` Jeff Layton
2017-04-12 12:06 ` [PATCH v2 07/17] fs: new infrastructure for writeback error handling and reporting Jeff Layton
2017-04-12 18:42 ` Jeff Layton
2017-04-12 21:55 ` NeilBrown
2017-04-12 23:01 ` Jeff Layton
2017-04-17 22:53 ` NeilBrown [this message]
2017-04-12 12:06 ` [PATCH v2 08/17] fs: retrofit old error reporting API onto new infrastructure Jeff Layton
2017-04-12 22:14 ` NeilBrown
2017-04-12 22:41 ` Jeff Layton
2017-04-17 22:56 ` NeilBrown
2017-04-21 12:46 ` Jeff Layton
2017-04-23 22:38 ` NeilBrown
2017-04-24 11:50 ` Jeff Layton
2017-04-17 15:17 ` Jeff Layton
2017-04-12 12:06 ` [PATCH v2 09/17] mm: remove AS_EIO and AS_ENOSPC flags Jeff Layton
2017-04-12 12:06 ` [PATCH v2 10/17] dax: set errors in mapping when writeback fails Jeff Layton
2017-04-12 12:06 ` [PATCH v2 11/17] nilfs2: set the mapping error when calling SetPageError on writeback Jeff Layton
2017-04-12 12:06 ` [PATCH v2 12/17] mm: ensure that we set mapping error if writeout() fails Jeff Layton
2017-04-12 12:06 ` [PATCH v2 13/17] mm: don't TestClearPageError in __filemap_fdatawait_range Jeff Layton
2017-04-12 12:06 ` [PATCH v2 14/17] 9p: set mapping error when writeback fails in launder_page Jeff Layton
2017-04-12 12:06 ` [PATCH v2 15/17] fuse: set mapping error in writepage_locked when it fails Jeff Layton
2017-04-12 12:06 ` [PATCH v2 16/17] cifs: set mapping error when page writeback fails in writepage or launder_pages Jeff Layton
2017-04-12 12:06 ` [PATCH v2 17/17] cifs: remove some unneeded mapping_set_error calls Jeff Layton
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=87y3uytzme.fsf@notabene.neil.brown.name \
--to=neilb@suse.com \
--cc=akpm@linux-foundation.org \
--cc=jack@suse.cz \
--cc=jlayton@redhat.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tytso@mit.edu \
--cc=viro@zeniv.linux.org.uk \
--cc=willy@infradead.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;
as well as URLs for NNTP newsgroup(s).