blob: bbe79ed90e2b15f8caf2748625fae44b33b5f928 [file] [log] [blame]
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -07001#ifndef _LINUX_DAX_H
2#define _LINUX_DAX_H
3
4#include <linux/fs.h>
5#include <linux/mm.h>
Jan Kara4f622932016-05-12 18:29:17 +02006#include <linux/radix-tree.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -07007#include <asm/pgtable.h>
8
Christoph Hellwiga254e562016-09-19 11:24:49 +10009struct iomap_ops;
Dan Williams6568b082017-01-24 18:44:18 -080010struct 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 *);
Dan Williams0aed55a2017-05-29 12:22:50 -070019 /* copy_from_iter: dax-driver override for default copy_from_iter */
20 size_t (*copy_from_iter)(struct dax_device *, pgoff_t, void *, size_t,
21 struct iov_iter *);
Dan Williams6568b082017-01-24 18:44:18 -080022};
Christoph Hellwiga254e562016-09-19 11:24:49 +100023
Dan Williamsef5104242017-05-08 10:55:27 -070024#if IS_ENABLED(CONFIG_DAX)
25struct dax_device *dax_get_by_host(const char *host);
26void put_dax(struct dax_device *dax_dev);
27#else
28static inline struct dax_device *dax_get_by_host(const char *host)
29{
30 return NULL;
31}
32
33static inline void put_dax(struct dax_device *dax_dev)
34{
35}
36#endif
37
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070038int bdev_dax_pgoff(struct block_device *, sector_t, size_t, pgoff_t *pgoff);
39#if IS_ENABLED(CONFIG_FS_DAX)
40int __bdev_dax_supported(struct super_block *sb, int blocksize);
41static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
42{
43 return __bdev_dax_supported(sb, blocksize);
44}
45
46static inline struct dax_device *fs_dax_get_by_host(const char *host)
47{
48 return dax_get_by_host(host);
49}
50
51static inline void fs_put_dax(struct dax_device *dax_dev)
52{
53 put_dax(dax_dev);
54}
55
56#else
57static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
58{
59 return -EOPNOTSUPP;
60}
61
62static inline struct dax_device *fs_dax_get_by_host(const char *host)
63{
64 return NULL;
65}
66
67static inline void fs_put_dax(struct dax_device *dax_dev)
68{
69}
70#endif
71
Dan Williams7b6be842017-04-11 09:49:49 -070072int dax_read_lock(void);
73void dax_read_unlock(int id);
Dan Williamsc1d6e822017-01-24 23:02:09 -080074struct dax_device *alloc_dax(void *private, const char *host,
75 const struct dax_operations *ops);
Dan Williamsc1d6e822017-01-24 23:02:09 -080076bool dax_alive(struct dax_device *dax_dev);
77void kill_dax(struct dax_device *dax_dev);
78void *dax_get_private(struct dax_device *dax_dev);
Dan Williamsb0686262017-01-26 20:37:35 -080079long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
80 void **kaddr, pfn_t *pfn);
Dan Williams7b6be842017-04-11 09:49:49 -070081
Ross Zwislerfa28f722016-11-08 11:33:35 +110082/*
Ross Zwisler642261a2016-11-08 11:34:45 +110083 * We use lowest available bit in exceptional entry for locking, one bit for
84 * the entry size (PMD) and two more to tell us if the entry is a huge zero
85 * page (HZP) or an empty entry that is just used for locking. In total four
86 * special bits.
87 *
88 * If the PMD bit isn't set the entry has size PAGE_SIZE, and if the HZP and
89 * EMPTY bits aren't set the entry is a normal DAX entry with a filesystem
90 * block allocation.
Ross Zwislerfa28f722016-11-08 11:33:35 +110091 */
Ross Zwisler642261a2016-11-08 11:34:45 +110092#define RADIX_DAX_SHIFT (RADIX_TREE_EXCEPTIONAL_SHIFT + 4)
Jan Karae8043152016-05-12 18:29:16 +020093#define RADIX_DAX_ENTRY_LOCK (1 << RADIX_TREE_EXCEPTIONAL_SHIFT)
Ross Zwisler642261a2016-11-08 11:34:45 +110094#define RADIX_DAX_PMD (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 1))
95#define RADIX_DAX_HZP (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 2))
96#define RADIX_DAX_EMPTY (1 << (RADIX_TREE_EXCEPTIONAL_SHIFT + 3))
Ross Zwislerfa28f722016-11-08 11:33:35 +110097
Ross Zwisler642261a2016-11-08 11:34:45 +110098static inline unsigned long dax_radix_sector(void *entry)
99{
100 return (unsigned long)entry >> RADIX_DAX_SHIFT;
101}
102
103static inline void *dax_radix_locked_entry(sector_t sector, unsigned long flags)
104{
105 return (void *)(RADIX_TREE_EXCEPTIONAL_ENTRY | flags |
106 ((unsigned long)sector << RADIX_DAX_SHIFT) |
107 RADIX_DAX_ENTRY_LOCK);
108}
Jan Karae8043152016-05-12 18:29:16 +0200109
Ross Zwisler11c59c92016-11-08 11:32:46 +1100110ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -0800111 const struct iomap_ops *ops);
Dave Jiangc791ace2017-02-24 14:57:08 -0800112int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
113 const struct iomap_ops *ops);
Jan Karaac401cc2016-05-12 18:29:18 +0200114int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
Jan Karac6dcf522016-08-10 17:22:44 +0200115int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
116 pgoff_t index);
Jan Karaac401cc2016-05-12 18:29:18 +0200117void dax_wake_mapping_entry_waiter(struct address_space *mapping,
Ross Zwisler63e95b52016-11-08 11:32:20 +1100118 pgoff_t index, void *entry, bool wake_all);
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800119
120#ifdef CONFIG_FS_DAX
Dan Williamscccbce62017-01-27 13:31:42 -0800121int __dax_zero_page_range(struct block_device *bdev,
122 struct dax_device *dax_dev, sector_t sector,
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200123 unsigned int offset, unsigned int length);
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800124#else
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200125static inline int __dax_zero_page_range(struct block_device *bdev,
Dan Williamscccbce62017-01-27 13:31:42 -0800126 struct dax_device *dax_dev, sector_t sector,
127 unsigned int offset, unsigned int length)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200128{
129 return -ENXIO;
130}
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800131#endif
132
Ross Zwisler642261a2016-11-08 11:34:45 +1100133#ifdef CONFIG_FS_DAX_PMD
134static inline unsigned int dax_radix_order(void *entry)
135{
136 if ((unsigned long)entry & RADIX_DAX_PMD)
137 return PMD_SHIFT - PAGE_SHIFT;
138 return 0;
139}
Ross Zwisler642261a2016-11-08 11:34:45 +1100140#else
141static inline unsigned int dax_radix_order(void *entry)
142{
143 return 0;
144}
Ross Zwisler642261a2016-11-08 11:34:45 +1100145#endif
Dave Jiang11bac802017-02-24 14:56:41 -0800146int dax_pfn_mkwrite(struct vm_fault *vmf);
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -0700147
Matthew Wilcox4897c762015-09-08 14:58:45 -0700148static inline bool vma_is_dax(struct vm_area_struct *vma)
149{
150 return vma->vm_file && IS_DAX(vma->vm_file->f_mapping->host);
151}
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800152
153static inline bool dax_mapping(struct address_space *mapping)
154{
155 return mapping->host && IS_DAX(mapping->host);
156}
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800157
158struct writeback_control;
159int dax_writeback_mapping_range(struct address_space *mapping,
160 struct block_device *bdev, struct writeback_control *wbc);
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -0700161#endif