]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/dax.h
dax: prevent invalidation of mapped DAX entries
[mirror_ubuntu-zesty-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
CH
9struct iomap_ops;
10
fa28f729 11/*
642261ac
RZ
12 * We use lowest available bit in exceptional entry for locking, one bit for
13 * the entry size (PMD) and two more to tell us if the entry is a huge zero
14 * page (HZP) or an empty entry that is just used for locking. In total four
15 * special bits.
16 *
17 * If the PMD bit isn't set the entry has size PAGE_SIZE, and if the HZP and
18 * EMPTY bits aren't set the entry is a normal DAX entry with a filesystem
19 * block allocation.
fa28f729 20 */
642261ac 21#define RADIX_DAX_SHIFT (RADIX_TREE_EXCEPTIONAL_SHIFT + 4)
e804315d 22#define RADIX_DAX_ENTRY_LOCK (1 << RADIX_TREE_EXCEPTIONAL_SHIFT)
642261ac
RZ
23#define RADIX_DAX_PMD (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 1))
24#define RADIX_DAX_HZP (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 2))
25#define RADIX_DAX_EMPTY (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 3))
fa28f729 26
642261ac
RZ
27static inline unsigned long dax_radix_sector(void *entry)
28{
29 return (unsigned long)entry >> RADIX_DAX_SHIFT;
30}
31
32static inline void *dax_radix_locked_entry(sector_t sector, unsigned long flags)
33{
34 return (void *)(RADIX_TREE_EXCEPTIONAL_ENTRY | flags |
35 ((unsigned long)sector << RADIX_DAX_SHIFT) |
36 RADIX_DAX_ENTRY_LOCK);
37}
e804315d 38
11c59c92 39ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
a254e568 40 struct iomap_ops *ops);
11c59c92 41int dax_iomap_fault(struct vm_area_struct *vma, struct vm_fault *vmf,
a7d73fe6 42 struct iomap_ops *ops);
ac401cc7 43int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
c6dcf52c
JK
44int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
45 pgoff_t index);
ac401cc7 46void dax_wake_mapping_entry_waiter(struct address_space *mapping,
63e95b5c 47 pgoff_t index, void *entry, bool wake_all);
d1a5f2b4
DW
48
49#ifdef CONFIG_FS_DAX
50struct page *read_dax_sector(struct block_device *bdev, sector_t n);
679c8bd3
CH
51int __dax_zero_page_range(struct block_device *bdev, sector_t sector,
52 unsigned int offset, unsigned int length);
d1a5f2b4
DW
53#else
54static inline struct page *read_dax_sector(struct block_device *bdev,
55 sector_t n)
56{
57 return ERR_PTR(-ENXIO);
58}
679c8bd3
CH
59static inline int __dax_zero_page_range(struct block_device *bdev,
60 sector_t sector, unsigned int offset, unsigned int length)
61{
62 return -ENXIO;
63}
d1a5f2b4
DW
64#endif
65
642261ac
RZ
66#ifdef CONFIG_FS_DAX_PMD
67static inline unsigned int dax_radix_order(void *entry)
68{
69 if ((unsigned long)entry & RADIX_DAX_PMD)
70 return PMD_SHIFT - PAGE_SHIFT;
71 return 0;
72}
73int dax_iomap_pmd_fault(struct vm_area_struct *vma, unsigned long address,
74 pmd_t *pmd, unsigned int flags, struct iomap_ops *ops);
75#else
76static inline unsigned int dax_radix_order(void *entry)
77{
78 return 0;
79}
80static inline int dax_iomap_pmd_fault(struct vm_area_struct *vma,
81 unsigned long address, pmd_t *pmd, unsigned int flags,
82 struct iomap_ops *ops)
83{
84 return VM_FAULT_FALLBACK;
85}
86#endif
c94c2acf 87int dax_pfn_mkwrite(struct vm_area_struct *, struct vm_fault *);
c94c2acf 88
4897c765
MW
89static inline bool vma_is_dax(struct vm_area_struct *vma)
90{
91 return vma->vm_file && IS_DAX(vma->vm_file->f_mapping->host);
92}
f9fe48be
RZ
93
94static inline bool dax_mapping(struct address_space *mapping)
95{
96 return mapping->host && IS_DAX(mapping->host);
97}
7f6d5b52
RZ
98
99struct writeback_control;
100int dax_writeback_mapping_range(struct address_space *mapping,
101 struct block_device *bdev, struct writeback_control *wbc);
c94c2acf 102#endif