All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pankaj Gupta <pagupta@redhat.com>
To: linux-nvdimm@lists.01.org, linux-kernel@vger.kernel.org,
	virtualization@lists.linux-foundation.org, kvm@vger.kernel.org,
	linux-fsdevel@vger.kernel.org, linux-acpi@vger.kernel.org,
	qemu-devel@nongnu.org, linux-ext4@vger.kernel.org,
	linux-xfs@vger.kernel.org
Cc: pagupta@redhat.com, jack@suse.cz, mst@redhat.com,
	david@fromorbit.com, lcapitulino@redhat.com,
	adilger.kernel@dilger.ca, zwisler@kernel.org,
	aarcange@redhat.com, dave.jiang@intel.com, jstaron@google.com,
	darrick.wong@oracle.com, vishal.l.verma@intel.com,
	willy@infradead.org, hch@infradead.org, jmoyer@redhat.com,
	nilal@redhat.com, lenb@kernel.org, kilobyte@angband.pl,
	riel@surriel.com, yuval.shaia@oracle.com, stefanha@redhat.com,
	pbonzini@redhat.com, dan.j.williams@intel.com, tytso@mit.edu,
	xiaoguangrong.eric@gmail.com, cohuck@redhat.com,
	rjw@rjwysocki.net, imammedo@redhat.com
Subject: [PATCH v9 6/7] ext4: disable map_sync for async flush
Date: Tue, 14 May 2019 20:24:21 +0530	[thread overview]
Message-ID: <20190514145422.16923-7-pagupta__16780.3183592454$1557845924$gmane$org@redhat.com> (raw)
In-Reply-To: <20190514145422.16923-1-pagupta@redhat.com>

Dont support 'MAP_SYNC' with non-DAX files and DAX files
with asynchronous dax_device. 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>
Reviewed-by: Jan Kara <jack@suse.cz>
---
 fs/ext4/file.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/fs/ext4/file.c b/fs/ext4/file.c
index 98ec11f69cd4..dee549339e13 100644
--- a/fs/ext4/file.c
+++ b/fs/ext4/file.c
@@ -360,15 +360,17 @@ 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;
 
 	/*
-	 * We don't support synchronous mappings for non-DAX files. At least
-	 * until someone comes with a sensible use case.
+	 * We don't support synchronous mappings for non-DAX files and
+	 * for DAX files if underneath dax_device is not synchronous.
 	 */
-	if (!IS_DAX(file_inode(file)) && (vma->vm_flags & VM_SYNC))
+	if (!daxdev_mapping_supported(vma, dax_dev))
 		return -EOPNOTSUPP;
 
 	file_accessed(file);
-- 
2.20.1

  parent reply	other threads:[~2019-05-14 14:54 UTC|newest]

Thread overview: 97+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-14 14:54 [PATCH v9 0/7] virtio pmem driver Pankaj Gupta
2019-05-14 14:54 ` [Qemu-devel] " Pankaj Gupta
2019-05-14 14:54 ` Pankaj Gupta
2019-05-14 14:54 ` [PATCH v9 1/7] libnvdimm: nd_region flush callback support Pankaj Gupta
2019-05-14 14:54 ` Pankaj Gupta
2019-05-14 14:54   ` [Qemu-devel] " Pankaj Gupta
2019-05-14 14:54   ` Pankaj Gupta
2019-05-15 21:07   ` Dan Williams
2019-05-15 21:07   ` Dan Williams
2019-05-15 21:07     ` [Qemu-devel] " Dan Williams
2019-05-15 21:07     ` Dan Williams
2019-05-16  6:28     ` Pankaj Gupta
2019-05-16  6:28       ` Pankaj Gupta
2019-05-16  6:28       ` [Qemu-devel] " Pankaj Gupta
2019-05-16  6:28       ` Pankaj Gupta
2019-05-14 14:54 ` [PATCH v9 2/7] virtio-pmem: Add virtio pmem driver Pankaj Gupta
2019-05-14 14:54   ` [Qemu-devel] " Pankaj Gupta
2019-05-14 15:09   ` Randy Dunlap
2019-05-14 15:09     ` [Qemu-devel] " Randy Dunlap
2019-05-14 15:09     ` Randy Dunlap
2019-05-14 15:25     ` [Qemu-devel] " Pankaj Gupta
2019-05-14 15:25     ` Pankaj Gupta
2019-05-14 15:25       ` Pankaj Gupta
2019-05-14 15:25       ` Pankaj Gupta
2019-05-14 15:25       ` Pankaj Gupta
2019-05-15 20:46       ` Dan Williams
2019-05-15 20:46         ` Dan Williams
2019-05-15 20:46         ` Dan Williams
2019-05-15 20:46       ` Dan Williams
2019-05-15 20:46   ` David Hildenbrand
2019-05-15 20:46     ` [Qemu-devel] " David Hildenbrand
2019-05-15 20:46     ` David Hildenbrand
2019-05-15 20:52     ` David Hildenbrand
2019-05-15 20:52       ` [Qemu-devel] " David Hildenbrand
2019-05-16  7:54       ` Pankaj Gupta
2019-05-16  7:54       ` Pankaj Gupta
2019-05-16  7:54         ` [Qemu-devel] " Pankaj Gupta
2019-05-16  7:54         ` Pankaj Gupta
2019-05-15 20:52     ` David Hildenbrand
2019-05-16  7:49     ` Pankaj Gupta
2019-05-16  7:49       ` [Qemu-devel] " Pankaj Gupta
2019-05-16  7:49       ` Pankaj Gupta
2019-05-16  7:49     ` Pankaj Gupta
2019-05-16 13:59     ` Michael S. Tsirkin
2019-05-16 13:59       ` [Qemu-devel] " Michael S. Tsirkin
2019-05-16 13:59       ` Michael S. Tsirkin
2019-05-17  5:31       ` [Qemu-devel] " Pankaj Gupta
2019-05-17  5:31       ` Pankaj Gupta
2019-05-17  5:31         ` Pankaj Gupta
2019-05-17  5:31         ` Pankaj Gupta
2019-05-16 13:59     ` Michael S. Tsirkin
2019-05-17  0:12   ` Jakub Staroń via Virtualization
     [not found]   ` <20190514145422.16923-3-pagupta-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2019-05-17  0:12     ` Jakub Staroń
2019-05-17  0:12       ` [Qemu-devel] " Jakub Staroń via Qemu-devel
2019-05-17  0:12       ` Jakub Staroń
2019-05-17  5:35       ` [Qemu-devel] " Pankaj Gupta
2019-05-17  5:35       ` Pankaj Gupta
2019-05-17  5:35         ` Pankaj Gupta
2019-05-17  5:35         ` Pankaj Gupta
2019-05-18  1:10         ` Jakub Staroń via Virtualization
2019-05-18  1:10         ` Jakub Staroń
2019-05-18  1:10           ` Jakub Staroń via Qemu-devel
2019-05-18  1:10           ` Jakub Staroń
2019-05-20  3:46           ` Pankaj Gupta
2019-05-20  3:46             ` Pankaj Gupta
2019-05-20  3:46             ` Pankaj Gupta
2019-05-20  3:46             ` Pankaj Gupta
2019-05-20  3:47             ` Pankaj Gupta
2019-05-20  3:47             ` Pankaj Gupta
2019-05-20  3:47               ` Pankaj Gupta
2019-05-20  3:47               ` Pankaj Gupta
2019-05-14 14:54 ` Pankaj Gupta
2019-05-14 14:54 ` [PATCH v9 3/7] libnvdimm: add dax_dev sync flag Pankaj Gupta
2019-05-14 14:54   ` Pankaj Gupta
2019-05-14 14:54   ` [Qemu-devel] " Pankaj Gupta
2019-05-14 14:54   ` Pankaj Gupta
2019-05-14 14:54 ` [PATCH v9 4/7] dm: enable synchronous dax Pankaj Gupta
2019-05-14 14:54 ` Pankaj Gupta
2019-05-14 14:54   ` [Qemu-devel] " Pankaj Gupta
2019-05-14 14:54   ` Pankaj Gupta
2019-05-15 20:48   ` Dan Williams
2019-05-15 20:48     ` Dan Williams
2019-05-15 20:48     ` [Qemu-devel] " Dan Williams
2019-05-15 20:48     ` Dan Williams
2019-05-15 20:48   ` Dan Williams
2019-05-14 14:54 ` [PATCH v9 5/7] dax: check synchronous mapping is supported Pankaj Gupta
2019-05-14 14:54   ` [Qemu-devel] " Pankaj Gupta
2019-05-14 14:54   ` Pankaj Gupta
2019-05-14 14:54 ` Pankaj Gupta
2019-05-14 14:54 ` [PATCH v9 6/7] ext4: disable map_sync for async flush Pankaj Gupta
2019-05-14 14:54   ` [Qemu-devel] " Pankaj Gupta
2019-05-14 14:54   ` Pankaj Gupta
2019-05-14 14:54 ` Pankaj Gupta [this message]
2019-05-14 14:54 ` [PATCH v9 7/7] xfs: " Pankaj Gupta
2019-05-14 14:54   ` Pankaj Gupta
2019-05-14 14:54   ` [Qemu-devel] " Pankaj Gupta
2019-05-14 14:54   ` 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='20190514145422.16923-7-pagupta__16780.3183592454$1557845924$gmane$org@redhat.com' \
    --to=pagupta@redhat.com \
    --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=jack@suse.cz \
    --cc=jmoyer@redhat.com \
    --cc=jstaron@google.com \
    --cc=kilobyte@angband.pl \
    --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=pbonzini@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=yuval.shaia@oracle.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.