Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1697593

Re: [PATCH v2 2/4] mm: add file_fdatawait_range and file_write_and_wait

From Jeff Layton <jlayton@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH v2 2/4] mm: add file_fdatawait_range and file_write_and_wait
Date 2017-07-27 00:20 +0200
Message-ID <u7COR-6b0-5@gated-at.bofh.it> (permalink)
References <u7yLg-3p3-3@gated-at.bofh.it> <u7yLg-3p3-1@gated-at.bofh.it> <u7A0G-4lW-29@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Wed, 2017-07-26 at 12:13 -0700, Matthew Wilcox wrote:
> On Wed, Jul 26, 2017 at 01:55:36PM -0400, Jeff Layton wrote:
> > +int file_write_and_wait(struct file *file)
> > +{
> > +	int err = 0, err2;
> > +	struct address_space *mapping = file->f_mapping;
> > +
> > +	if ((!dax_mapping(mapping) && mapping->nrpages) ||
> > +	    (dax_mapping(mapping) && mapping->nrexceptional)) {
> 
> Since patch 1 exists, shouldn't this use the new helper?
> 

<facepalm>

yes, will fix


> > +		err = filemap_fdatawrite(mapping);
> > +		/* See comment of filemap_write_and_wait() */
> > +		if (err != -EIO) {
> > +			loff_t i_size = i_size_read(mapping->host);
> > +
> > +			if (i_size != 0)
> > +				__filemap_fdatawait_range(mapping, 0,
> > +							  i_size - 1);
> > +		}
> > +	}
> > +	err2 = file_check_and_advance_wb_err(file);
> > +	if (!err)
> > +		err = err2;
> > +	return err;
> 
> Would this be clearer written as:
> 
> 	if (err)
> 		return err;
> 	return err2;
> 
> or even ...
> 
> 	return err ? err : err2;
> 

Meh -- I like it the way I have it. If we don't have an error already,
then just take the one from the check and advance.

That said, I don't have a terribly strong preference here, so if anyone
does, then I can be easily persuaded.

-- 
-- 
Jeff Layton <jlayton@redhat.com>

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 2/4] mm: add file_fdatawait_range and file_write_and_wait Jeff Layton <jlayton@kernel.org> - 2017-07-26 20:00 +0200
  Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Matthew Wilcox <willy@infradead.org> - 2017-07-26 21:20 +0200
    Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Jeff Layton <jlayton@redhat.com> - 2017-07-27 00:20 +0200
  Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Bob Peterson <rpeterso@redhat.com> - 2017-07-26 22:00 +0200
  Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Jan Kara <jack@suse.cz> - 2017-07-27 10:50 +0200
    Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Jeff Layton <jlayton@redhat.com> - 2017-07-27 14:50 +0200
      Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Jeff Layton <jlayton@redhat.com> - 2017-07-31 13:30 +0200
        Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Steven Whitehouse <swhiteho@redhat.com> - 2017-07-31 13:40 +0200
          Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Jeff Layton <jlayton@redhat.com> - 2017-07-31 13:50 +0200
            Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Steven Whitehouse <swhiteho@redhat.com> - 2017-07-31 14:10 +0200
              Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Steven Whitehouse <swhiteho@redhat.com> - 2017-07-31 14:30 +0200
              Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Jeff Layton <jlayton@redhat.com> - 2017-07-31 14:30 +0200
            Re: [PATCH v2 2/4] mm: add file_fdatawait_range and  file_write_and_wait Jan Kara <jack@suse.cz> - 2017-07-31 14:10 +0200

csiph-web