diff options
author | Jan Kara <jack@suse.cz> | 2016-05-11 12:58:48 +0300 |
---|---|---|
committer | Vishal Verma <vishal.l.verma@intel.com> | 2016-05-17 03:11:51 +0300 |
commit | 02fbd139759feb1f331cebd858523b5d774082e6 (patch) | |
tree | 841ff90012518ce3c37ecb1cca0367db7568d18a /include/linux/fs.h | |
parent | e4b2749158631e6d74bf14d2ef3804d780e2f770 (diff) | |
download | linux-02fbd139759feb1f331cebd858523b5d774082e6.tar.xz |
dax: Remove complete_unwritten argument
Fault handlers currently take complete_unwritten argument to convert
unwritten extents after PTEs are updated. However no filesystem uses
this anymore as the code is racy. Remove the unused argument.
Reviewed-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 70e61b58baaf..9f2813090d1b 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -74,7 +74,6 @@ typedef int (get_block_t)(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int create); typedef int (dio_iodone_t)(struct kiocb *iocb, loff_t offset, ssize_t bytes, void *private); -typedef void (dax_iodone_t)(struct buffer_head *bh_map, int uptodate); #define MAY_EXEC 0x00000001 #define MAY_WRITE 0x00000002 |