diff options
Diffstat (limited to 'fs/ext2/file.c')
| -rw-r--r-- | fs/ext2/file.c | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/fs/ext2/file.c b/fs/ext2/file.c index a2f3afd1a1c1..586e3589d4c2 100644 --- a/fs/ext2/file.c +++ b/fs/ext2/file.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | */ | 19 | */ |
| 20 | 20 | ||
| 21 | #include <linux/time.h> | 21 | #include <linux/time.h> |
| 22 | #include <linux/pagemap.h> | ||
| 22 | #include "ext2.h" | 23 | #include "ext2.h" |
| 23 | #include "xattr.h" | 24 | #include "xattr.h" |
| 24 | #include "acl.h" | 25 | #include "acl.h" |
| @@ -38,6 +39,22 @@ static int ext2_release_file (struct inode * inode, struct file * filp) | |||
| 38 | return 0; | 39 | return 0; |
| 39 | } | 40 | } |
| 40 | 41 | ||
| 42 | int ext2_fsync(struct file *file, struct dentry *dentry, int datasync) | ||
| 43 | { | ||
| 44 | int ret; | ||
| 45 | struct super_block *sb = dentry->d_inode->i_sb; | ||
| 46 | struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping; | ||
| 47 | |||
| 48 | ret = simple_fsync(file, dentry, datasync); | ||
| 49 | if (ret == -EIO || test_and_clear_bit(AS_EIO, &mapping->flags)) { | ||
| 50 | /* We don't really know where the IO error happened... */ | ||
| 51 | ext2_error(sb, __func__, | ||
| 52 | "detected IO error when writing metadata buffers"); | ||
| 53 | ret = -EIO; | ||
| 54 | } | ||
| 55 | return ret; | ||
| 56 | } | ||
| 57 | |||
| 41 | /* | 58 | /* |
| 42 | * We have mostly NULL's here: the current defaults are ok for | 59 | * We have mostly NULL's here: the current defaults are ok for |
| 43 | * the ext2 filesystem. | 60 | * the ext2 filesystem. |
| @@ -55,7 +72,7 @@ const struct file_operations ext2_file_operations = { | |||
| 55 | .mmap = generic_file_mmap, | 72 | .mmap = generic_file_mmap, |
| 56 | .open = generic_file_open, | 73 | .open = generic_file_open, |
| 57 | .release = ext2_release_file, | 74 | .release = ext2_release_file, |
| 58 | .fsync = simple_fsync, | 75 | .fsync = ext2_fsync, |
| 59 | .splice_read = generic_file_splice_read, | 76 | .splice_read = generic_file_splice_read, |
| 60 | .splice_write = generic_file_splice_write, | 77 | .splice_write = generic_file_splice_write, |
| 61 | }; | 78 | }; |
| @@ -72,7 +89,7 @@ const struct file_operations ext2_xip_file_operations = { | |||
| 72 | .mmap = xip_file_mmap, | 89 | .mmap = xip_file_mmap, |
| 73 | .open = generic_file_open, | 90 | .open = generic_file_open, |
| 74 | .release = ext2_release_file, | 91 | .release = ext2_release_file, |
| 75 | .fsync = simple_fsync, | 92 | .fsync = ext2_fsync, |
| 76 | }; | 93 | }; |
| 77 | #endif | 94 | #endif |
| 78 | 95 | ||
