PCI: pnv_php: Add missing of_node_put()
[linux-2.6-block.git] / include / linux / dax.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
c94c2acf
MW
2#ifndef _LINUX_DAX_H
3#define _LINUX_DAX_H
4
5#include <linux/fs.h>
6#include <linux/mm.h>
4f622938 7#include <linux/radix-tree.h>
c94c2acf
MW
8#include <asm/pgtable.h>
9
a254e568 10struct iomap_ops;
6568b08b
DW
11struct dax_device;
12struct dax_operations {
13 /*
14 * direct_access: translate a device-relative
15 * logical-page-offset into an absolute physical pfn. Return the
16 * number of pages available for DAX at that pfn.
17 */
18 long (*direct_access)(struct dax_device *, pgoff_t, long,
19 void **, pfn_t *);
5d61e43b 20 /* copy_from_iter: required operation for fs-dax direct-i/o */
0aed55af
DW
21 size_t (*copy_from_iter)(struct dax_device *, pgoff_t, void *, size_t,
22 struct iov_iter *);
6568b08b 23};
a254e568 24
6e0c90d6
DW
25extern struct attribute_group dax_attribute_group;
26
f5705aa8
DW
27#if IS_ENABLED(CONFIG_DAX)
28struct dax_device *dax_get_by_host(const char *host);
976431b0
DW
29struct dax_device *alloc_dax(void *private, const char *host,
30 const struct dax_operations *ops);
f5705aa8 31void put_dax(struct dax_device *dax_dev);
976431b0
DW
32void kill_dax(struct dax_device *dax_dev);
33void dax_write_cache(struct dax_device *dax_dev, bool wc);
34bool dax_write_cache_enabled(struct dax_device *dax_dev);
f5705aa8
DW
35#else
36static inline struct dax_device *dax_get_by_host(const char *host)
37{
38 return NULL;
39}
976431b0
DW
40static inline struct dax_device *alloc_dax(void *private, const char *host,
41 const struct dax_operations *ops)
42{
43 /*
44 * Callers should check IS_ENABLED(CONFIG_DAX) to know if this
45 * NULL is an error or expected.
46 */
47 return NULL;
48}
f5705aa8
DW
49static inline void put_dax(struct dax_device *dax_dev)
50{
51}
976431b0
DW
52static inline void kill_dax(struct dax_device *dax_dev)
53{
54}
55static inline void dax_write_cache(struct dax_device *dax_dev, bool wc)
56{
57}
58static inline bool dax_write_cache_enabled(struct dax_device *dax_dev)
59{
60 return false;
61}
f5705aa8
DW
62#endif
63
f44c7763 64struct writeback_control;
ef510424
DW
65int bdev_dax_pgoff(struct block_device *, sector_t, size_t, pgoff_t *pgoff);
66#if IS_ENABLED(CONFIG_FS_DAX)
67int __bdev_dax_supported(struct super_block *sb, int blocksize);
68static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
69{
70 return __bdev_dax_supported(sb, blocksize);
71}
f5705aa8
DW
72
73static inline struct dax_device *fs_dax_get_by_host(const char *host)
74{
75 return dax_get_by_host(host);
76}
77
78static inline void fs_put_dax(struct dax_device *dax_dev)
79{
80 put_dax(dax_dev);
81}
82
78f35473 83struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev);
f44c7763
DW
84int dax_writeback_mapping_range(struct address_space *mapping,
85 struct block_device *bdev, struct writeback_control *wbc);
ef510424
DW
86#else
87static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
88{
89 return -EOPNOTSUPP;
90}
ef510424 91
f5705aa8 92static inline struct dax_device *fs_dax_get_by_host(const char *host)
ef510424
DW
93{
94 return NULL;
95}
96
f5705aa8 97static inline void fs_put_dax(struct dax_device *dax_dev)
ef510424
DW
98{
99}
78f35473
DW
100
101static inline struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev)
102{
103 return NULL;
104}
f44c7763
DW
105
106static inline int dax_writeback_mapping_range(struct address_space *mapping,
107 struct block_device *bdev, struct writeback_control *wbc)
108{
109 return -EOPNOTSUPP;
110}
ef510424
DW
111#endif
112
7b6be844
DW
113int dax_read_lock(void);
114void dax_read_unlock(int id);
c1d6e828 115bool dax_alive(struct dax_device *dax_dev);
c1d6e828 116void *dax_get_private(struct dax_device *dax_dev);
b0686260
DW
117long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
118 void **kaddr, pfn_t *pfn);
7e026c8c
DW
119size_t dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
120 size_t bytes, struct iov_iter *i);
c3ca015f 121void dax_flush(struct dax_device *dax_dev, void *addr, size_t size);
7b6be844 122
11c59c92 123ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
8ff6daa1 124 const struct iomap_ops *ops);
c791ace1 125int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
c0b24625 126 pfn_t *pfnp, int *errp, const struct iomap_ops *ops);
71eab6df
JK
127int dax_finish_sync_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
128 pfn_t pfn);
ac401cc7 129int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
c6dcf52c
JK
130int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
131 pgoff_t index);
d1a5f2b4
DW
132
133#ifdef CONFIG_FS_DAX
cccbce67
DW
134int __dax_zero_page_range(struct block_device *bdev,
135 struct dax_device *dax_dev, sector_t sector,
679c8bd3 136 unsigned int offset, unsigned int length);
d1a5f2b4 137#else
679c8bd3 138static inline int __dax_zero_page_range(struct block_device *bdev,
cccbce67
DW
139 struct dax_device *dax_dev, sector_t sector,
140 unsigned int offset, unsigned int length)
679c8bd3
CH
141{
142 return -ENXIO;
143}
d1a5f2b4
DW
144#endif
145
f9fe48be
RZ
146static inline bool dax_mapping(struct address_space *mapping)
147{
148 return mapping->host && IS_DAX(mapping->host);
149}
7f6d5b52 150
c94c2acf 151#endif