All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Sterba <dsterba@suse.cz>
To: Goldwyn Rodrigues <rgoldwyn@suse.de>
Cc: linux-fsdevel@vger.kernel.org, linux-btrfs@vger.kernel.org,
	fdmanana@gmail.com, dsterba@suse.cz, david@fromorbit.com,
	darrick.wong@oracle.com, hch@lst.de,
	Goldwyn Rodrigues <rgoldwyn@suse.com>
Subject: Re: [PATCH 1/6] iomap: Convert wait_for_completion to flags
Date: Tue, 30 Jun 2020 18:35:27 +0200	[thread overview]
Message-ID: <20200630163527.GZ27795@twin.jikos.cz> (raw)
In-Reply-To: <20200629192353.20841-2-rgoldwyn@suse.de>

On Mon, Jun 29, 2020 at 02:23:48PM -0500, Goldwyn Rodrigues wrote:
> From: Goldwyn Rodrigues <rgoldwyn@suse.com>
> 
> Convert wait_for_completion boolean to flags so we can pass more flags
> to iomap_dio_rw()
> 
> Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
> ---
>  fs/ext4/file.c        | 11 +++++++++--
>  fs/gfs2/file.c        | 14 ++++++++++----
>  fs/iomap/direct-io.c  |  3 ++-
>  fs/xfs/xfs_file.c     | 15 +++++++++++----
>  fs/zonefs/super.c     | 16 ++++++++++++----
>  include/linux/iomap.h | 11 ++++++++++-

Though it's an API change I think you should CC all involved subsystems'
mailinglists too.  I don't see GFS2 or zonefs.

  parent reply	other threads:[~2020-06-30 16:35 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-29 19:23 [PATCH 0/6 v10] btrfs direct-io using iomap Goldwyn Rodrigues
2020-06-29 19:23 ` [PATCH 1/6] iomap: Convert wait_for_completion to flags Goldwyn Rodrigues
2020-06-29 23:03   ` David Sterba
2020-06-30 16:35   ` David Sterba [this message]
2020-07-01  7:34     ` Johannes Thumshirn
2020-07-01  7:50   ` Christoph Hellwig
2020-06-29 19:23 ` [PATCH 2/6] iomap: IOMAP_DIO_RWF_NO_STALE_PAGECACHE return if page invalidation fails Goldwyn Rodrigues
2020-07-01  7:53   ` always fall back to buffered I/O after invalidation failures, was: " Christoph Hellwig
2020-07-01  7:53     ` [Cluster-devel] " Christoph Hellwig
2020-07-07 12:43     ` Goldwyn Rodrigues
2020-07-07 12:43       ` [Cluster-devel] " Goldwyn Rodrigues
2020-07-07 12:57       ` Matthew Wilcox
2020-07-07 12:57         ` [Cluster-devel] " Matthew Wilcox
2020-07-07 13:00         ` Christoph Hellwig
2020-07-07 13:00           ` [Cluster-devel] " Christoph Hellwig
2020-07-08  6:51           ` Dave Chinner
2020-07-08  6:51             ` [Cluster-devel] " Dave Chinner
2020-07-08 13:54             ` Matthew Wilcox
2020-07-08 13:54               ` [Cluster-devel] " Matthew Wilcox
2020-07-08 16:54               ` Christoph Hellwig
2020-07-08 16:54                 ` [Cluster-devel] " Christoph Hellwig
2020-07-08 17:11                 ` Matthew Wilcox
2020-07-08 17:11                   ` [Cluster-devel] " Matthew Wilcox
2020-07-09  8:26                 ` Steven Whitehouse
2020-07-09  8:26                   ` Steven Whitehouse
2020-07-09  2:25               ` Dave Chinner
2020-07-09  2:25                 ` [Cluster-devel] " Dave Chinner
2020-07-09 16:09                 ` Darrick J. Wong
2020-07-09 16:09                   ` [Cluster-devel] " Darrick J. Wong
2020-07-09 17:05                   ` Matthew Wilcox
2020-07-09 17:05                     ` [Cluster-devel] " Matthew Wilcox
2020-07-09 17:10                     ` Darrick J. Wong
2020-07-09 17:10                       ` [Cluster-devel] " Darrick J. Wong
2020-07-09 22:59                       ` Dave Chinner
2020-07-09 22:59                         ` [Cluster-devel] " Dave Chinner
2020-07-10 16:03                         ` Christoph Hellwig
2020-07-10 16:03                           ` [Cluster-devel] " Christoph Hellwig
2020-07-12 11:36                 ` Avi Kivity
2020-07-12 11:36                   ` [Cluster-devel] " Avi Kivity
2020-07-07 13:49         ` Goldwyn Rodrigues
2020-07-07 13:49           ` [Cluster-devel] " Goldwyn Rodrigues
2020-07-07 14:01           ` Darrick J. Wong
2020-07-07 14:01             ` [Cluster-devel] " Darrick J. Wong
2020-07-07 14:30             ` Goldwyn Rodrigues
2020-07-07 14:30               ` [Cluster-devel] " Goldwyn Rodrigues
2020-06-29 19:23 ` [PATCH 3/6] btrfs: switch to iomap_dio_rw() for dio Goldwyn Rodrigues
2020-06-29 19:23 ` [PATCH 4/6] fs: remove dio_end_io() Goldwyn Rodrigues
2020-06-29 19:23 ` [PATCH 5/6] btrfs: remove BTRFS_INODE_READDIO_NEED_LOCK Goldwyn Rodrigues
2020-06-29 19:23 ` [PATCH 6/6] btrfs: split btrfs_direct_IO to read and write part Goldwyn Rodrigues
  -- strict thread matches above, loose matches on Subject: below --
2020-07-08 21:19 [PATCH 0/6 v11] btrfs direct-io using iomap Goldwyn Rodrigues
2020-07-08 21:19 ` [PATCH 1/6] iomap: Convert wait_for_completion to flags Goldwyn Rodrigues
2020-06-22 15:24 [PATCH 0/6 v9] btrfs direct-io using iomap Goldwyn Rodrigues
2020-06-22 15:24 ` [PATCH 1/6] iomap: Convert wait_for_completion to flags Goldwyn Rodrigues
2020-06-22 15:49   ` Johannes Thumshirn
2020-06-22 17:34   ` Darrick J. Wong
2020-06-23  5:57   ` Dave Chinner
2020-06-25 17:42     ` Goldwyn Rodrigues

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=20200630163527.GZ27795@twin.jikos.cz \
    --to=dsterba@suse.cz \
    --cc=darrick.wong@oracle.com \
    --cc=david@fromorbit.com \
    --cc=fdmanana@gmail.com \
    --cc=hch@lst.de \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=rgoldwyn@suse.com \
    --cc=rgoldwyn@suse.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.