dax, pmem: introduce an optional 'flush' dax_operation
authorDan Williams <dan.j.williams@intel.com>
Mon, 29 May 2017 19:58:19 +0000 (12:58 -0700)
committerDan Williams <dan.j.williams@intel.com>
Thu, 15 Jun 2017 21:34:59 +0000 (14:34 -0700)
Filesystem-DAX flushes caches whenever it writes to the address returned
through dax_direct_access() and when writing back dirty radix entries.
That flushing is only required in the pmem case, so add a dax operation
to allow pmem to take this extra action, but skip it for other dax
capable devices that do not provide a flush routine.

An example for this differentiation might be a volatile ram disk where
there is no expectation of persistence. In fact the pmem driver itself might
front such an address range specified by the NFIT. So, this "no flush"
property might be something passed down by the bus / libnvdimm.

Cc: Christoph Hellwig <hch@lst.de>
Cc: Matthew Wilcox <mawilcox@microsoft.com>
Cc: Ross Zwisler <ross.zwisler@linux.intel.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/nvdimm/pmem.c
include/linux/dax.h

index 2f3aefe565c662954da47c461b55af2dcb26a588..823b07774244431261c82eab49d5816f39b26d56 100644 (file)
@@ -242,9 +242,16 @@ static size_t pmem_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
        return copy_from_iter_flushcache(addr, bytes, i);
 }
 
+static void pmem_dax_flush(struct dax_device *dax_dev, pgoff_t pgoff,
+               void *addr, size_t size)
+{
+       wb_cache_pmem(addr, size);
+}
+
 static const struct dax_operations pmem_dax_ops = {
        .direct_access = pmem_dax_direct_access,
        .copy_from_iter = pmem_copy_from_iter,
+       .flush = pmem_dax_flush,
 };
 
 static void pmem_release_queue(void *q)
index 28e398f8c59e3ab429e05514f5f20655514500d5..407dd3ff6e54dd28554e8a828a33dd8590800cdf 100644 (file)
@@ -19,6 +19,8 @@ struct dax_operations {
        /* copy_from_iter: dax-driver override for default copy_from_iter */
        size_t (*copy_from_iter)(struct dax_device *, pgoff_t, void *, size_t,
                        struct iov_iter *);
+       /* flush: optional driver-specific cache management after writes */
+       void (*flush)(struct dax_device *, pgoff_t, void *, size_t);
 };
 
 #if IS_ENABLED(CONFIG_DAX)