summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-11-25 18:31:48 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2024-11-25 18:31:48 -0800
commit78a2cbd809ef834b680f2825d3e4c16ec66f8ffa (patch)
tree16a406c9e325d0b9c75f65ca81e8b5615fe6d68a /include
parent2c22dc1ee3a1d1c50bee5f0f71ebffa86c33e172 (diff)
parentf3dd9ae7f03aefa5bb12a4606f3d6cca87863622 (diff)
downloadlinux-78a2cbd809ef834b680f2825d3e4c16ec66f8ffa.tar.gz
linux-78a2cbd809ef834b680f2825d3e4c16ec66f8ffa.tar.bz2
linux-78a2cbd809ef834b680f2825d3e4c16ec66f8ffa.zip
Merge tag 'libnvdimm-for-6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm
Pull nvdimm and DAX updates from Ira Weiny: "Most represent minor cleanups and code removals. One patch fixes potential NULL pointer arithmetic which was benign because the offset of the member was 0. Nevertheless it should be cleaned up. - typo fixes - clarify logic to remove potential NULL pointer math - remove dead code" * tag 'libnvdimm-for-6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm: dax: Remove an unused field in struct dax_operations dax: delete a stale directory pmem nvdimm: rectify the illogical code within nd_dax_probe() nvdimm: Correct some typos in comments
Diffstat (limited to 'include')
-rw-r--r--include/linux/dax.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/dax.h b/include/linux/dax.h
index 9d3e3327af4c..df41a0017b31 100644
--- a/include/linux/dax.h
+++ b/include/linux/dax.h
@@ -27,12 +27,6 @@ struct dax_operations {
*/
long (*direct_access)(struct dax_device *, pgoff_t, long,
enum dax_access_mode, void **, pfn_t *);
- /*
- * Validate whether this device is usable as an fsdax backing
- * device.
- */
- bool (*dax_supported)(struct dax_device *, struct block_device *, int,
- sector_t, sector_t);
/* zero_page_range: required operation. Zero page range */
int (*zero_page_range)(struct dax_device *, pgoff_t, size_t);
/*