diff options
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 8084934a5676..6bad6d4c579b 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -51,6 +51,7 @@ struct swap_info_struct; | |||
51 | struct seq_file; | 51 | struct seq_file; |
52 | struct workqueue_struct; | 52 | struct workqueue_struct; |
53 | struct iov_iter; | 53 | struct iov_iter; |
54 | struct vm_fault; | ||
54 | 55 | ||
55 | extern void __init inode_init(void); | 56 | extern void __init inode_init(void); |
56 | extern void __init inode_init_early(void); | 57 | extern void __init inode_init_early(void); |
@@ -2590,9 +2591,10 @@ extern int nonseekable_open(struct inode * inode, struct file * filp); | |||
2590 | ssize_t dax_do_io(int rw, struct kiocb *, struct inode *, struct iov_iter *, | 2591 | ssize_t dax_do_io(int rw, struct kiocb *, struct inode *, struct iov_iter *, |
2591 | loff_t, get_block_t, dio_iodone_t, int flags); | 2592 | loff_t, get_block_t, dio_iodone_t, int flags); |
2592 | int dax_clear_blocks(struct inode *, sector_t block, long size); | 2593 | int dax_clear_blocks(struct inode *, sector_t block, long size); |
2594 | int dax_fault(struct vm_area_struct *, struct vm_fault *, get_block_t); | ||
2595 | #define dax_mkwrite(vma, vmf, gb) dax_fault(vma, vmf, gb) | ||
2593 | 2596 | ||
2594 | #ifdef CONFIG_FS_XIP | 2597 | #ifdef CONFIG_FS_XIP |
2595 | extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma); | ||
2596 | extern int xip_truncate_page(struct address_space *mapping, loff_t from); | 2598 | extern int xip_truncate_page(struct address_space *mapping, loff_t from); |
2597 | #else | 2599 | #else |
2598 | static inline int xip_truncate_page(struct address_space *mapping, loff_t from) | 2600 | static inline int xip_truncate_page(struct address_space *mapping, loff_t from) |