diff options
Diffstat (limited to 'fs/affs/file.c')
-rw-r--r-- | fs/affs/file.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/fs/affs/file.c b/fs/affs/file.c index 2f4c935cb327..af3261b78102 100644 --- a/fs/affs/file.c +++ b/fs/affs/file.c | |||
@@ -39,7 +39,6 @@ const struct file_operations affs_file_operations = { | |||
39 | }; | 39 | }; |
40 | 40 | ||
41 | const struct inode_operations affs_file_inode_operations = { | 41 | const struct inode_operations affs_file_inode_operations = { |
42 | .truncate = affs_truncate, | ||
43 | .setattr = affs_notify_change, | 42 | .setattr = affs_notify_change, |
44 | }; | 43 | }; |
45 | 44 | ||
@@ -402,6 +401,16 @@ static int affs_readpage(struct file *file, struct page *page) | |||
402 | return block_read_full_page(page, affs_get_block); | 401 | return block_read_full_page(page, affs_get_block); |
403 | } | 402 | } |
404 | 403 | ||
404 | static void affs_write_failed(struct address_space *mapping, loff_t to) | ||
405 | { | ||
406 | struct inode *inode = mapping->host; | ||
407 | |||
408 | if (to > inode->i_size) { | ||
409 | truncate_pagecache(inode, to, inode->i_size); | ||
410 | affs_truncate(inode); | ||
411 | } | ||
412 | } | ||
413 | |||
405 | static int affs_write_begin(struct file *file, struct address_space *mapping, | 414 | static int affs_write_begin(struct file *file, struct address_space *mapping, |
406 | loff_t pos, unsigned len, unsigned flags, | 415 | loff_t pos, unsigned len, unsigned flags, |
407 | struct page **pagep, void **fsdata) | 416 | struct page **pagep, void **fsdata) |
@@ -412,11 +421,8 @@ static int affs_write_begin(struct file *file, struct address_space *mapping, | |||
412 | ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata, | 421 | ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata, |
413 | affs_get_block, | 422 | affs_get_block, |
414 | &AFFS_I(mapping->host)->mmu_private); | 423 | &AFFS_I(mapping->host)->mmu_private); |
415 | if (unlikely(ret)) { | 424 | if (unlikely(ret)) |
416 | loff_t isize = mapping->host->i_size; | 425 | affs_write_failed(mapping, pos + len); |
417 | if (pos + len > isize) | ||
418 | vmtruncate(mapping->host, isize); | ||
419 | } | ||
420 | 426 | ||
421 | return ret; | 427 | return ret; |
422 | } | 428 | } |