All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Pankaj Gupta <pagupta@redhat.com>
Cc: cohuck@redhat.com, jack@suse.cz, kvm@vger.kernel.org,
	mst@redhat.com, david@fromorbit.com, qemu-devel@nongnu.org,
	virtualization@lists.linux-foundation.org,
	adilger.kernel@dilger.ca, zwisler@kernel.org,
	aarcange@redhat.com, dave.jiang@intel.com,
	linux-nvdimm@lists.01.org, vishal.l.verma@intel.com,
	willy@infradead.org, hch@infradead.org,
	linux-acpi@vger.kernel.org, jmoyer@redhat.com,
	linux-ext4@vger.kernel.org, lenb@kernel.org, riel@surriel.com,
	stefanha@redhat.com, dan.j.williams@intel.com,
	lcapitulino@redhat.com, nilal@redhat.com, tytso@mit.edu,
	xiaoguangrong.eric@gmail.com, darrick.wong@oracle.com,
	rjw@rjwysocki.net, linux-kernel@vger.kernel.org,
	linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	imammedo@redhat.com
Subject: Re: [PATCH v4 4/5] ext4: disable map_sync for async flush
Date: Wed, 3 Apr 2019 13:30:49 +0200	[thread overview]
Message-ID: <20190403113049.GF8836__31660.0227773719$1554291071$gmane$org@quack2.suse.cz> (raw)
In-Reply-To: <20190403104018.23947-5-pagupta@redhat.com>

On Wed 03-04-19 16:10:17, Pankaj Gupta wrote:
> Virtio pmem provides asynchronous host page cache flush
> mechanism. We don't support 'MAP_SYNC' with virtio pmem 
> and ext4. 
> 
> Signed-off-by: Pankaj Gupta <pagupta@redhat.com>

The patch looks good to me. You can add:

Reviewed-by: Jan Kara <jack@suse.cz>

								Honza

> ---
>  fs/ext4/file.c | 11 ++++++++++-
>  1 file changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/fs/ext4/file.c b/fs/ext4/file.c
> index 69d65d49837b..86e4bf464320 100644
> --- a/fs/ext4/file.c
> +++ b/fs/ext4/file.c
> @@ -360,8 +360,10 @@ static const struct vm_operations_struct ext4_file_vm_ops = {
>  static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)
>  {
>  	struct inode *inode = file->f_mapping->host;
> +	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
> +	struct dax_device *dax_dev = sbi->s_daxdev;
>  
> -	if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
> +	if (unlikely(ext4_forced_shutdown(sbi)))
>  		return -EIO;
>  
>  	/*
> @@ -371,6 +373,13 @@ static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)
>  	if (!IS_DAX(file_inode(file)) && (vma->vm_flags & VM_SYNC))
>  		return -EOPNOTSUPP;
>  
> +	/* We don't support synchronous mappings with DAX files if
> +	 * dax_device is not synchronous.
> +	 */
> +	if (IS_DAX(file_inode(file)) && !dax_synchronous(dax_dev)
> +						&& (vma->vm_flags & VM_SYNC))
> +		return -EOPNOTSUPP;
> +
>  	file_accessed(file);
>  	if (IS_DAX(file_inode(file))) {
>  		vma->vm_ops = &ext4_dax_vm_ops;
> -- 
> 2.20.1
> 
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

  parent reply	other threads:[~2019-04-03 11:30 UTC|newest]

Thread overview: 101+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-03 10:40 [PATCH v4 0/5] virtio pmem driver Pankaj Gupta
2019-04-03 10:40 ` [Qemu-devel] " Pankaj Gupta
2019-04-03 10:40 ` Pankaj Gupta
2019-04-03 10:40 ` [PATCH v4 1/5] ibnvdimm: nd_region flush callback support Pankaj Gupta
2019-04-03 10:40 ` Pankaj Gupta
2019-04-03 10:40   ` [Qemu-devel] " Pankaj Gupta
2019-04-03 10:40   ` Pankaj Gupta
2019-04-03 10:40 ` [PATCH v4 2/5] virtio-pmem: Add virtio pmem driver Pankaj Gupta
2019-04-03 10:40   ` [Qemu-devel] " Pankaj Gupta
2019-04-03 10:40   ` Pankaj Gupta
2019-04-03 11:43   ` [Qemu-devel] " Yuval Shaia
2019-04-03 11:43   ` Yuval Shaia
2019-04-03 11:43     ` Yuval Shaia
2019-04-03 11:43     ` Yuval Shaia
2019-04-03 12:40     ` Pankaj Gupta
2019-04-03 12:40     ` Pankaj Gupta
2019-04-03 12:40       ` Pankaj Gupta
2019-04-03 12:40       ` Pankaj Gupta
2019-04-04  6:40       ` Yuval Shaia
2019-04-04  6:40       ` Yuval Shaia
2019-04-04  6:40         ` Yuval Shaia
2019-04-04  6:40         ` Yuval Shaia
2019-04-04  7:14         ` Pankaj Gupta
2019-04-04  7:14         ` Pankaj Gupta
2019-04-04  7:14           ` Pankaj Gupta
2019-04-04  7:14           ` Pankaj Gupta
2019-04-04  7:14           ` Pankaj Gupta
2019-04-03 10:40 ` Pankaj Gupta
2019-04-03 10:40 ` [PATCH v4 3/5] libnvdimm: add dax_dev sync flag Pankaj Gupta
2019-04-03 10:40 ` Pankaj Gupta
2019-04-03 10:40   ` [Qemu-devel] " Pankaj Gupta
2019-04-03 10:40   ` Pankaj Gupta
2019-04-03 10:40   ` Pankaj Gupta
2019-04-03 10:40 ` [PATCH v4 4/5] ext4: disable map_sync for async flush Pankaj Gupta
2019-04-03 10:40 ` Pankaj Gupta
2019-04-03 10:40   ` [Qemu-devel] " Pankaj Gupta
2019-04-03 10:40   ` Pankaj Gupta
2019-04-03 11:30   ` Jan Kara
2019-04-03 11:30     ` [Qemu-devel] " Jan Kara
2019-04-03 11:30     ` Jan Kara
2019-04-03 11:30   ` Jan Kara [this message]
2019-04-03 10:40 ` [PATCH v4 5/5] xfs: " Pankaj Gupta
2019-04-03 10:40 ` Pankaj Gupta
2019-04-03 10:40   ` [Qemu-devel] " Pankaj Gupta
2019-04-03 10:40   ` Pankaj Gupta
2019-04-03 22:09   ` Dave Chinner
2019-04-03 22:09   ` Dave Chinner
2019-04-03 22:09     ` [Qemu-devel] " Dave Chinner
2019-04-03 22:09     ` Dave Chinner
2019-04-03 22:39     ` Darrick J. Wong
2019-04-03 22:39     ` Darrick J. Wong
2019-04-03 22:39       ` [Qemu-devel] " Darrick J. Wong
2019-04-03 22:39       ` Darrick J. Wong
2019-04-03 22:39       ` Darrick J. Wong
2019-04-04  6:13       ` Pankaj Gupta
2019-04-04  6:13       ` Pankaj Gupta
2019-04-04  6:13         ` [Qemu-devel] " Pankaj Gupta
2019-04-04  6:13         ` Pankaj Gupta
2019-04-04  6:13         ` Pankaj Gupta
2019-04-04  6:13         ` Pankaj Gupta
2019-04-04  9:09         ` Pankaj Gupta
2019-04-04  9:09           ` [Qemu-devel] " Pankaj Gupta
2019-04-04  9:09           ` Pankaj Gupta
2019-04-04  9:09           ` Pankaj Gupta
2019-04-04  9:40           ` Jan Kara
2019-04-04  9:40             ` [Qemu-devel] " Jan Kara
2019-04-04  9:40             ` Jan Kara
2019-04-04  9:40             ` Jan Kara
2019-04-04 10:08             ` [Qemu-devel] " Pankaj Gupta
2019-04-04 10:08             ` Pankaj Gupta
2019-04-04 10:08               ` Pankaj Gupta
2019-04-04 10:08               ` Pankaj Gupta
2019-04-04 10:08               ` Pankaj Gupta
2019-04-04 10:08               ` Pankaj Gupta
2019-04-04 15:00               ` Darrick J. Wong
2019-04-04 15:00                 ` Darrick J. Wong
2019-04-04 15:00                 ` Darrick J. Wong
2019-04-04 15:50                 ` Pankaj Gupta
2019-04-04 15:50                   ` Pankaj Gupta
2019-04-04 15:50                   ` Pankaj Gupta
2019-04-04 15:50                 ` Pankaj Gupta
2019-04-04 15:00               ` Darrick J. Wong
2019-04-04  9:09         ` Pankaj Gupta
2019-04-04  6:12     ` Pankaj Gupta
2019-04-04  6:12       ` [Qemu-devel] " Pankaj Gupta
2019-04-04  6:12       ` Pankaj Gupta
2019-04-04  6:12       ` Pankaj Gupta
2019-04-04  6:12       ` Pankaj Gupta
2019-04-04  6:12       ` Pankaj Gupta
2019-04-04  9:56       ` Adam Borowski
2019-04-04  9:56       ` Adam Borowski
2019-04-04  9:56         ` [Qemu-devel] " Adam Borowski
2019-04-04  9:56         ` Adam Borowski
2019-04-04  9:56         ` Adam Borowski
2019-04-04 10:52         ` Pankaj Gupta
2019-04-04 10:52           ` [Qemu-devel] " Pankaj Gupta
2019-04-04 10:52           ` Pankaj Gupta
2019-04-04 10:52           ` Pankaj Gupta
2019-04-04 10:52           ` Pankaj Gupta
2019-04-04 10:52         ` Pankaj Gupta
2019-04-04  6:12     ` Pankaj Gupta

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='20190403113049.GF8836__31660.0227773719$1554291071$gmane$org@quack2.suse.cz' \
    --to=jack@suse.cz \
    --cc=aarcange@redhat.com \
    --cc=adilger.kernel@dilger.ca \
    --cc=cohuck@redhat.com \
    --cc=dan.j.williams@intel.com \
    --cc=darrick.wong@oracle.com \
    --cc=dave.jiang@intel.com \
    --cc=david@fromorbit.com \
    --cc=hch@infradead.org \
    --cc=imammedo@redhat.com \
    --cc=jmoyer@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=lcapitulino@redhat.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-ext4@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-nvdimm@lists.01.org \
    --cc=linux-xfs@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=nilal@redhat.com \
    --cc=pagupta@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=riel@surriel.com \
    --cc=rjw@rjwysocki.net \
    --cc=stefanha@redhat.com \
    --cc=tytso@mit.edu \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=vishal.l.verma@intel.com \
    --cc=willy@infradead.org \
    --cc=xiaoguangrong.eric@gmail.com \
    --cc=zwisler@kernel.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 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.