diff options
Diffstat (limited to 'fs/sysv/itree.c')
| -rw-r--r-- | fs/sysv/itree.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/fs/sysv/itree.c b/fs/sysv/itree.c index f042eec464c2..9ca66276315e 100644 --- a/fs/sysv/itree.c +++ b/fs/sysv/itree.c | |||
| @@ -459,20 +459,25 @@ static int sysv_readpage(struct file *file, struct page *page) | |||
| 459 | return block_read_full_page(page,get_block); | 459 | return block_read_full_page(page,get_block); |
| 460 | } | 460 | } |
| 461 | 461 | ||
| 462 | int __sysv_write_begin(struct file *file, struct address_space *mapping, | 462 | int sysv_prepare_chunk(struct page *page, loff_t pos, unsigned len) |
| 463 | loff_t pos, unsigned len, unsigned flags, | ||
| 464 | struct page **pagep, void **fsdata) | ||
| 465 | { | 463 | { |
| 466 | return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata, | 464 | return __block_write_begin(page, pos, len, get_block); |
| 467 | get_block); | ||
| 468 | } | 465 | } |
| 469 | 466 | ||
| 470 | static int sysv_write_begin(struct file *file, struct address_space *mapping, | 467 | static int sysv_write_begin(struct file *file, struct address_space *mapping, |
| 471 | loff_t pos, unsigned len, unsigned flags, | 468 | loff_t pos, unsigned len, unsigned flags, |
| 472 | struct page **pagep, void **fsdata) | 469 | struct page **pagep, void **fsdata) |
| 473 | { | 470 | { |
| 474 | *pagep = NULL; | 471 | int ret; |
| 475 | return __sysv_write_begin(file, mapping, pos, len, flags, pagep, fsdata); | 472 | |
| 473 | ret = block_write_begin(mapping, pos, len, flags, pagep, get_block); | ||
| 474 | if (unlikely(ret)) { | ||
| 475 | loff_t isize = mapping->host->i_size; | ||
| 476 | if (pos + len > isize) | ||
| 477 | vmtruncate(mapping->host, isize); | ||
| 478 | } | ||
| 479 | |||
| 480 | return ret; | ||
| 476 | } | 481 | } |
| 477 | 482 | ||
| 478 | static sector_t sysv_bmap(struct address_space *mapping, sector_t block) | 483 | static sector_t sysv_bmap(struct address_space *mapping, sector_t block) |
