diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2016-07-29 12:10:57 (GMT) |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2016-07-29 12:10:57 (GMT) |
commit | d72d9e2a5d7ec04a1f92925c5ac633d8031fa7fc (patch) | |
tree | e6a7cfe53cd3b0f75e911d5b435a5ee483150de5 /include | |
parent | 9446385f05c9af25fed53dbed3cc75763730be52 (diff) | |
download | linux-d72d9e2a5d7ec04a1f92925c5ac633d8031fa7fc.tar.xz |
mm: export filemap_check_errors() to modules
Can be used by fuse, btrfs and f2fs to replace opencoded variants.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index dd28814..6f2536a 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2507,6 +2507,7 @@ extern int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start, loff_t end, int sync_mode); extern int filemap_fdatawrite_range(struct address_space *mapping, loff_t start, loff_t end); +extern int filemap_check_errors(struct address_space *mapping); extern int vfs_fsync_range(struct file *file, loff_t start, loff_t end, int datasync); |