2015-09-09 05:58:40 +08:00
|
|
|
#ifndef _LINUX_DAX_H
|
|
|
|
#define _LINUX_DAX_H
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
2016-05-13 00:29:17 +08:00
|
|
|
#include <linux/radix-tree.h>
|
2015-09-09 05:58:40 +08:00
|
|
|
#include <asm/pgtable.h>
|
|
|
|
|
2016-09-19 09:24:49 +08:00
|
|
|
struct iomap_ops;
|
|
|
|
|
2016-05-13 00:29:16 +08:00
|
|
|
/* We use lowest available exceptional entry bit for locking */
|
|
|
|
#define RADIX_DAX_ENTRY_LOCK (1 << RADIX_TREE_EXCEPTIONAL_SHIFT)
|
|
|
|
|
2016-09-19 09:24:49 +08:00
|
|
|
ssize_t iomap_dax_rw(struct kiocb *iocb, struct iov_iter *iter,
|
|
|
|
struct iomap_ops *ops);
|
2016-04-07 23:51:58 +08:00
|
|
|
ssize_t dax_do_io(struct kiocb *, struct inode *, struct iov_iter *,
|
2015-09-09 05:58:40 +08:00
|
|
|
get_block_t, dio_iodone_t, int flags);
|
|
|
|
int dax_zero_page_range(struct inode *, loff_t from, unsigned len, get_block_t);
|
|
|
|
int dax_truncate_page(struct inode *, loff_t from, get_block_t);
|
2016-09-19 09:24:50 +08:00
|
|
|
int iomap_dax_fault(struct vm_area_struct *vma, struct vm_fault *vmf,
|
|
|
|
struct iomap_ops *ops);
|
2016-05-11 17:58:48 +08:00
|
|
|
int dax_fault(struct vm_area_struct *, struct vm_fault *, get_block_t);
|
2016-05-13 00:29:18 +08:00
|
|
|
int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
|
|
|
|
void dax_wake_mapping_entry_waiter(struct address_space *mapping,
|
2016-11-08 08:32:20 +08:00
|
|
|
pgoff_t index, void *entry, bool wake_all);
|
2016-01-29 12:25:31 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_FS_DAX
|
|
|
|
struct page *read_dax_sector(struct block_device *bdev, sector_t n);
|
2016-05-13 00:29:19 +08:00
|
|
|
void dax_unlock_mapping_entry(struct address_space *mapping, pgoff_t index);
|
2016-05-09 16:47:04 +08:00
|
|
|
int __dax_zero_page_range(struct block_device *bdev, sector_t sector,
|
|
|
|
unsigned int offset, unsigned int length);
|
2016-01-29 12:25:31 +08:00
|
|
|
#else
|
|
|
|
static inline struct page *read_dax_sector(struct block_device *bdev,
|
|
|
|
sector_t n)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENXIO);
|
|
|
|
}
|
2016-05-13 00:29:19 +08:00
|
|
|
/* Shouldn't ever be called when dax is disabled. */
|
|
|
|
static inline void dax_unlock_mapping_entry(struct address_space *mapping,
|
|
|
|
pgoff_t index)
|
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
2016-05-09 16:47:04 +08:00
|
|
|
static inline int __dax_zero_page_range(struct block_device *bdev,
|
|
|
|
sector_t sector, unsigned int offset, unsigned int length)
|
|
|
|
{
|
|
|
|
return -ENXIO;
|
|
|
|
}
|
2016-01-29 12:25:31 +08:00
|
|
|
#endif
|
|
|
|
|
2015-09-09 05:58:57 +08:00
|
|
|
static inline int dax_pmd_fault(struct vm_area_struct *vma, unsigned long addr,
|
2016-05-11 17:58:48 +08:00
|
|
|
pmd_t *pmd, unsigned int flags, get_block_t gb)
|
2015-09-09 05:58:57 +08:00
|
|
|
{
|
|
|
|
return VM_FAULT_FALLBACK;
|
|
|
|
}
|
2016-11-08 08:32:35 +08:00
|
|
|
|
2015-09-09 05:58:40 +08:00
|
|
|
int dax_pfn_mkwrite(struct vm_area_struct *, struct vm_fault *);
|
2016-05-11 17:58:48 +08:00
|
|
|
#define dax_mkwrite(vma, vmf, gb) dax_fault(vma, vmf, gb)
|
2015-09-09 05:58:40 +08:00
|
|
|
|
2015-09-09 05:58:45 +08:00
|
|
|
static inline bool vma_is_dax(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
return vma->vm_file && IS_DAX(vma->vm_file->f_mapping->host);
|
|
|
|
}
|
2016-01-23 07:10:40 +08:00
|
|
|
|
|
|
|
static inline bool dax_mapping(struct address_space *mapping)
|
|
|
|
{
|
|
|
|
return mapping->host && IS_DAX(mapping->host);
|
|
|
|
}
|
2016-02-27 07:19:55 +08:00
|
|
|
|
|
|
|
struct writeback_control;
|
|
|
|
int dax_writeback_mapping_range(struct address_space *mapping,
|
|
|
|
struct block_device *bdev, struct writeback_control *wbc);
|
2015-09-09 05:58:40 +08:00
|
|
|
#endif
|