From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Thu, 9 Mar 2017 17:09:39 -0700 From: Ross Zwisler To: Jeff Layton Cc: viro@zeniv.linux.org.uk, akpm@linux-foundation.org, konishi.ryusuke@lab.ntt.co.jp, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, linux-nilfs@vger.kernel.org, ross.zwisler@linux.intel.com, jack@suse.cz, neilb@suse.com, openosd@gmail.com, adilger@dilger.ca, James.Bottomley@HansenPartnership.com Subject: Re: [PATCH v2 3/9] mm: clear any AS_* errors when returning error on any fsync or close Message-ID: <20170310000939.GC30285@linux.intel.com> References: <20170308162934.21989-1-jlayton@redhat.com> <20170308162934.21989-4-jlayton@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170308162934.21989-4-jlayton@redhat.com> Sender: owner-linux-mm@kvack.org List-ID: On Wed, Mar 08, 2017 at 11:29:28AM -0500, Jeff Layton wrote: > Currently we don't clear the address space error when there is a -EIO > error on fsynci, due to writeback initiation failure. If writes fail fsync > with -EIO and the mapping is flagged with an AS_EIO or AS_ENOSPC error, > then we can end up returning errors on two fsync calls, even when a > write between them succeeded (or there was no write). > > Ensure that we also clear out any mapping errors when initiating > writeback fails with -EIO in filemap_write_and_wait and > filemap_write_and_wait_range. > > Suggested-by: Jan Kara > Signed-off-by: Jeff Layton > --- > mm/filemap.c | 20 ++++++++++++++++++-- > 1 file changed, 18 insertions(+), 2 deletions(-) > > diff --git a/mm/filemap.c b/mm/filemap.c > index 1694623a6289..fc123b9833e1 100644 > --- a/mm/filemap.c > +++ b/mm/filemap.c > @@ -488,7 +488,7 @@ EXPORT_SYMBOL(filemap_fdatawait); > > int filemap_write_and_wait(struct address_space *mapping) > { > - int err = 0; > + int err; > > if ((!dax_mapping(mapping) && mapping->nrpages) || > (dax_mapping(mapping) && mapping->nrexceptional)) { > @@ -499,10 +499,18 @@ int filemap_write_and_wait(struct address_space *mapping) > * But the -EIO is special case, it may indicate the worst > * thing (e.g. bug) happened, so we avoid waiting for it. > */ > - if (err != -EIO) { > + if (likely(err != -EIO)) { The above two cleanup changes were made only to filemap_write_and_wait(), but should also probably be done to filemap_write_and_wait_range() to keep them as consistent as possible? -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org