linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v11 0/7] dax: fix dma vs truncate/hole-punch
@ 2018-05-19  1:34 Dan Williams
  2018-05-19  1:34 ` [PATCH v11 1/7] memremap: split devm_memremap_pages() and memremap() infrastructure Dan Williams
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Dan Williams @ 2018-05-19  1:34 UTC (permalink / raw)
  To: linux-nvdimm
  Cc: Dave Hansen, Dave Jiang, Darrick J. Wong, Matthew Wilcox,
	Alexander Viro, Heiko Carstens, Jan Kara, Darrick J. Wong,
	Dave Chinner, kbuild test robot, Christoph Hellwig, Ross Zwisler,
	Andrew Morton, Jeff Moyer, Michal Hocko, Jérôme Glisse,
	stable, Thomas Meyer, Martin Schwidefsky, linux-fsdevel,
	linux-mm

Changes since v9 [1] and v10 [2]

* Resend the full series with the reworked "mm: introduce
  MEMORY_DEVICE_FS_DAX and CONFIG_DEV_PAGEMAP_OPS" (Christoph)
* Move generic_dax_pagefree() into the pmem driver (Christoph)
* Cleanup __bdev_dax_supported() (Christoph)
* Cleanup some stale SRCU bits leftover from other iterations (Jan)
* Cleanup xfs_break_layouts() (Jan)

[1]: https://lists.01.org/pipermail/linux-nvdimm/2018-April/015457.html
[2]: https://lists.01.org/pipermail/linux-nvdimm/2018-May/015885.html

---

Background:

get_user_pages() in the filesystem pins file backed memory pages for
access by devices performing dma. However, it only pins the memory pages
not the page-to-file offset association. If a file is truncated the
pages are mapped out of the file and dma may continue indefinitely into
a page that is owned by a device driver. This breaks coherency of the
file vs dma, but the assumption is that if userspace wants the
file-space truncated it does not matter what data is inbound from the
device, it is not relevant anymore. The only expectation is that dma can
safely continue while the filesystem reallocates the block(s).

Problem:

This expectation that dma can safely continue while the filesystem
changes the block map is broken by dax. With dax the target dma page
*is* the filesystem block. The model of leaving the page pinned for dma,
but truncating the file block out of the file, means that the filesytem
is free to reallocate a block under active dma to another file and now
the expected data-incoherency situation has turned into active
data-corruption.

Solution:

Defer all filesystem operations (fallocate(), truncate()) on a dax mode
file while any page/block in the file is under active dma. This solution
assumes that dma is transient. Cases where dma operations are known to
not be transient, like RDMA, have been explicitly disabled via
commits like 5f1d43de5416 "IB/core: disable memory registration of
filesystem-dax vmas".

The dax_layout_busy_page() routine is called by filesystems with a lock
held against mm faults (i_mmap_lock) to find pinned / busy dax pages.
The process of looking up a busy page invalidates all mappings
to trigger any subsequent get_user_pages() to block on i_mmap_lock.
The filesystem continues to call dax_layout_busy_page() until it finally
returns no more active pages. This approach assumes that the page
pinning is transient, if that assumption is violated the system would
have likely hung from the uncompleted I/O.

---

Dan Williams (7):
      memremap: split devm_memremap_pages() and memremap() infrastructure
      mm: introduce MEMORY_DEVICE_FS_DAX and CONFIG_DEV_PAGEMAP_OPS
      mm: fix __gup_device_huge vs unmap
      mm, fs, dax: handle layout changes to pinned dax mappings
      xfs: prepare xfs_break_layouts() to be called with XFS_MMAPLOCK_EXCL
      xfs: prepare xfs_break_layouts() for another layout type
      xfs, dax: introduce xfs_break_dax_layouts()


 drivers/dax/super.c       |   14 ++-
 drivers/nvdimm/pfn_devs.c |    2 
 drivers/nvdimm/pmem.c     |   25 +++++
 fs/Kconfig                |    1 
 fs/dax.c                  |   97 +++++++++++++++++++++
 fs/xfs/xfs_file.c         |   72 ++++++++++++++--
 fs/xfs/xfs_inode.h        |   16 +++
 fs/xfs/xfs_ioctl.c        |    8 --
 fs/xfs/xfs_iops.c         |   16 ++-
 fs/xfs/xfs_pnfs.c         |   15 ++-
 fs/xfs/xfs_pnfs.h         |    5 +
 include/linux/dax.h       |    7 ++
 include/linux/memremap.h  |   36 ++------
 include/linux/mm.h        |   71 +++++++++++----
 kernel/Makefile           |    3 -
 kernel/iomem.c            |  167 ++++++++++++++++++++++++++++++++++++
 kernel/memremap.c         |  209 ++++++---------------------------------------
 mm/Kconfig                |    5 +
 mm/gup.c                  |   36 ++++++--
 mm/hmm.c                  |   13 ---
 mm/swap.c                 |    3 -
 21 files changed, 542 insertions(+), 279 deletions(-)
 create mode 100644 kernel/iomem.c

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2018-06-13 10:41 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-19  1:34 [PATCH v11 0/7] dax: fix dma vs truncate/hole-punch Dan Williams
2018-05-19  1:34 ` [PATCH v11 1/7] memremap: split devm_memremap_pages() and memremap() infrastructure Dan Williams
2018-05-22  6:24   ` Christoph Hellwig
2018-05-19  1:35 ` [PATCH v11 2/7] mm: introduce MEMORY_DEVICE_FS_DAX and CONFIG_DEV_PAGEMAP_OPS Dan Williams
2018-05-22  6:25   ` Christoph Hellwig
2018-05-19  1:35 ` [PATCH v11 3/7] mm: fix __gup_device_huge vs unmap Dan Williams
2018-06-11 21:58   ` Andrew Morton
2018-06-11 23:35     ` Dan Williams
2018-05-19  1:35 ` [PATCH v11 4/7] mm, fs, dax: handle layout changes to pinned dax mappings Dan Williams
2018-06-12 21:05   ` Ross Zwisler
2018-06-13 10:41     ` Jan Kara
2018-05-19  1:35 ` [PATCH v11 5/7] xfs: prepare xfs_break_layouts() to be called with XFS_MMAPLOCK_EXCL Dan Williams
2018-05-19  1:35 ` [PATCH v11 6/7] xfs: prepare xfs_break_layouts() for another layout type Dan Williams
2018-05-19  1:35 ` [PATCH v11 7/7] xfs, dax: introduce xfs_break_dax_layouts() Dan Williams
2018-05-22  6:27   ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).