]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/dax.h
dax: remove DAX code from page_cache_tree_insert()
[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 *);
3c1cebff
DW
22 /* flush: optional driver-specific cache management after writes */
23 void (*flush)(struct dax_device *, pgoff_t, void *, size_t);
6568b08b 24};
a254e568 25
6e0c90d6
DW
26extern struct attribute_group dax_attribute_group;
27
f5705aa8
DW
28#if IS_ENABLED(CONFIG_DAX)
29struct dax_device *dax_get_by_host(const char *host);
30void put_dax(struct dax_device *dax_dev);
31#else
32static inline struct dax_device *dax_get_by_host(const char *host)
33{
34 return NULL;
35}
36
37static inline void put_dax(struct dax_device *dax_dev)
38{
39}
40#endif
41
ef510424
DW
42int bdev_dax_pgoff(struct block_device *, sector_t, size_t, pgoff_t *pgoff);
43#if IS_ENABLED(CONFIG_FS_DAX)
44int __bdev_dax_supported(struct super_block *sb, int blocksize);
45static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
46{
47 return __bdev_dax_supported(sb, blocksize);
48}
f5705aa8
DW
49
50static inline struct dax_device *fs_dax_get_by_host(const char *host)
51{
52 return dax_get_by_host(host);
53}
54
55static inline void fs_put_dax(struct dax_device *dax_dev)
56{
57 put_dax(dax_dev);
58}
59
ef510424
DW
60#else
61static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
62{
63 return -EOPNOTSUPP;
64}
ef510424 65
f5705aa8 66static inline struct dax_device *fs_dax_get_by_host(const char *host)
ef510424
DW
67{
68 return NULL;
69}
70
f5705aa8 71static inline void fs_put_dax(struct dax_device *dax_dev)
ef510424
DW
72{
73}
74#endif
75
7b6be844
DW
76int dax_read_lock(void);
77void dax_read_unlock(int id);
c1d6e828
DW
78struct dax_device *alloc_dax(void *private, const char *host,
79 const struct dax_operations *ops);
c1d6e828
DW
80bool dax_alive(struct dax_device *dax_dev);
81void kill_dax(struct dax_device *dax_dev);
82void *dax_get_private(struct dax_device *dax_dev);
b0686260
DW
83long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
84 void **kaddr, pfn_t *pfn);
7e026c8c
DW
85size_t dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
86 size_t bytes, struct iov_iter *i);
abebfbe2
DW
87void dax_flush(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
88 size_t size);
6e0c90d6 89void dax_write_cache(struct dax_device *dax_dev, bool wc);
273752c9 90bool dax_write_cache_enabled(struct dax_device *dax_dev);
7b6be844 91
fa28f729 92/*
642261ac 93 * We use lowest available bit in exceptional entry for locking, one bit for
54585e35
RZ
94 * the entry size (PMD) and two more to tell us if the entry is a zero page or
95 * an empty entry that is just used for locking. In total four special bits.
642261ac 96 *
54585e35
RZ
97 * If the PMD bit isn't set the entry has size PAGE_SIZE, and if the ZERO_PAGE
98 * and EMPTY bits aren't set the entry is a normal DAX entry with a filesystem
642261ac 99 * block allocation.
fa28f729 100 */
642261ac 101#define RADIX_DAX_SHIFT (RADIX_TREE_EXCEPTIONAL_SHIFT + 4)
e804315d 102#define RADIX_DAX_ENTRY_LOCK (1 << RADIX_TREE_EXCEPTIONAL_SHIFT)
642261ac 103#define RADIX_DAX_PMD (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 1))
54585e35 104#define RADIX_DAX_ZERO_PAGE (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 2))
642261ac 105#define RADIX_DAX_EMPTY (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 3))
fa28f729 106
642261ac
RZ
107static inline unsigned long dax_radix_sector(void *entry)
108{
109 return (unsigned long)entry >> RADIX_DAX_SHIFT;
110}
111
112static inline void *dax_radix_locked_entry(sector_t sector, unsigned long flags)
113{
114 return (void *)(RADIX_TREE_EXCEPTIONAL_ENTRY | flags |
115 ((unsigned long)sector << RADIX_DAX_SHIFT) |
116 RADIX_DAX_ENTRY_LOCK);
117}
e804315d 118
11c59c92 119ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
8ff6daa1 120 const struct iomap_ops *ops);
c791ace1
DJ
121int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
122 const struct iomap_ops *ops);
ac401cc7 123int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
c6dcf52c
JK
124int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
125 pgoff_t index);
d1a5f2b4
DW
126
127#ifdef CONFIG_FS_DAX
cccbce67
DW
128int __dax_zero_page_range(struct block_device *bdev,
129 struct dax_device *dax_dev, sector_t sector,
679c8bd3 130 unsigned int offset, unsigned int length);
d1a5f2b4 131#else
679c8bd3 132static inline int __dax_zero_page_range(struct block_device *bdev,
cccbce67
DW
133 struct dax_device *dax_dev, sector_t sector,
134 unsigned int offset, unsigned int length)
679c8bd3
CH
135{
136 return -ENXIO;
137}
d1a5f2b4
DW
138#endif
139
642261ac
RZ
140#ifdef CONFIG_FS_DAX_PMD
141static inline unsigned int dax_radix_order(void *entry)
142{
143 if ((unsigned long)entry & RADIX_DAX_PMD)
144 return PMD_SHIFT - PAGE_SHIFT;
145 return 0;
146}
642261ac
RZ
147#else
148static inline unsigned int dax_radix_order(void *entry)
149{
150 return 0;
151}
642261ac 152#endif
c94c2acf 153
f9fe48be
RZ
154static inline bool dax_mapping(struct address_space *mapping)
155{
156 return mapping->host && IS_DAX(mapping->host);
157}
7f6d5b52
RZ
158
159struct writeback_control;
160int dax_writeback_mapping_range(struct address_space *mapping,
161 struct block_device *bdev, struct writeback_control *wbc);
c94c2acf 162#endif