]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/dax.h
bpf: Prevent memory disambiguation attack
[mirror_ubuntu-artful-kernel.git] / include / linux / dax.h
CommitLineData
c94c2acf
MW
1#ifndef _LINUX_DAX_H
2#define _LINUX_DAX_H
3
4#include <linux/fs.h>
5#include <linux/mm.h>
4f622938 6#include <linux/radix-tree.h>
c94c2acf
MW
7#include <asm/pgtable.h>
8
a254e568 9struct iomap_ops;
6568b08b
DW
10struct dax_device;
11struct dax_operations {
12 /*
13 * direct_access: translate a device-relative
14 * logical-page-offset into an absolute physical pfn. Return the
15 * number of pages available for DAX at that pfn.
16 */
17 long (*direct_access)(struct dax_device *, pgoff_t, long,
18 void **, pfn_t *);
5d61e43b 19 /* copy_from_iter: required operation for fs-dax direct-i/o */
0aed55af
DW
20 size_t (*copy_from_iter)(struct dax_device *, pgoff_t, void *, size_t,
21 struct iov_iter *);
6568b08b 22};
a254e568 23
6e0c90d6
DW
24extern struct attribute_group dax_attribute_group;
25
f5705aa8
DW
26#if IS_ENABLED(CONFIG_DAX)
27struct dax_device *dax_get_by_host(const char *host);
28void put_dax(struct dax_device *dax_dev);
29#else
30static inline struct dax_device *dax_get_by_host(const char *host)
31{
32 return NULL;
33}
34
35static inline void put_dax(struct dax_device *dax_dev)
36{
37}
38#endif
39
ef510424
DW
40int bdev_dax_pgoff(struct block_device *, sector_t, size_t, pgoff_t *pgoff);
41#if IS_ENABLED(CONFIG_FS_DAX)
42int __bdev_dax_supported(struct super_block *sb, int blocksize);
43static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
44{
45 return __bdev_dax_supported(sb, blocksize);
46}
f5705aa8
DW
47
48static inline struct dax_device *fs_dax_get_by_host(const char *host)
49{
50 return dax_get_by_host(host);
51}
52
53static inline void fs_put_dax(struct dax_device *dax_dev)
54{
55 put_dax(dax_dev);
56}
57
ef510424
DW
58#else
59static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
60{
61 return -EOPNOTSUPP;
62}
ef510424 63
f5705aa8 64static inline struct dax_device *fs_dax_get_by_host(const char *host)
ef510424
DW
65{
66 return NULL;
67}
68
f5705aa8 69static inline void fs_put_dax(struct dax_device *dax_dev)
ef510424
DW
70{
71}
72#endif
73
7b6be844
DW
74int dax_read_lock(void);
75void dax_read_unlock(int id);
c1d6e828
DW
76struct dax_device *alloc_dax(void *private, const char *host,
77 const struct dax_operations *ops);
c1d6e828
DW
78bool dax_alive(struct dax_device *dax_dev);
79void kill_dax(struct dax_device *dax_dev);
80void *dax_get_private(struct dax_device *dax_dev);
b0686260
DW
81long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
82 void **kaddr, pfn_t *pfn);
7e026c8c
DW
83size_t dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
84 size_t bytes, struct iov_iter *i);
4bbce3bf 85void dax_flush(struct dax_device *dax_dev, void *addr, size_t size);
6e0c90d6 86void dax_write_cache(struct dax_device *dax_dev, bool wc);
273752c9 87bool dax_write_cache_enabled(struct dax_device *dax_dev);
7b6be844 88
11c59c92 89ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
8ff6daa1 90 const struct iomap_ops *ops);
c791ace1
DJ
91int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
92 const struct iomap_ops *ops);
ac401cc7 93int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
c6dcf52c
JK
94int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
95 pgoff_t index);
d1a5f2b4
DW
96
97#ifdef CONFIG_FS_DAX
cccbce67
DW
98int __dax_zero_page_range(struct block_device *bdev,
99 struct dax_device *dax_dev, sector_t sector,
679c8bd3 100 unsigned int offset, unsigned int length);
d1a5f2b4 101#else
679c8bd3 102static inline int __dax_zero_page_range(struct block_device *bdev,
cccbce67
DW
103 struct dax_device *dax_dev, sector_t sector,
104 unsigned int offset, unsigned int length)
679c8bd3
CH
105{
106 return -ENXIO;
107}
d1a5f2b4
DW
108#endif
109
f9fe48be
RZ
110static inline bool dax_mapping(struct address_space *mapping)
111{
112 return mapping->host && IS_DAX(mapping->host);
113}
7f6d5b52
RZ
114
115struct writeback_control;
116int dax_writeback_mapping_range(struct address_space *mapping,
117 struct block_device *bdev, struct writeback_control *wbc);
c94c2acf 118#endif