Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329782
b: refs/heads/master
c: 378b8e1
h: refs/heads/master
v: v3
  • Loading branch information
Namjae Jeon authored and Jan Kara committed Sep 3, 2012
1 parent c72ee50 commit bc944bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e4230108547766f4e105a62c45f3724309106f91
refs/heads/master: 378b8e1ad18e7c97832aa3771e295153c4cd2a55
7 changes: 7 additions & 0 deletions trunk/fs/udf/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ static int udf_writepage(struct page *page, struct writeback_control *wbc)
return block_write_full_page(page, udf_get_block, wbc);
}

static int udf_writepages(struct address_space *mapping,
struct writeback_control *wbc)
{
return mpage_writepages(mapping, wbc, udf_get_block);
}

static int udf_readpage(struct file *file, struct page *page)
{
return mpage_readpage(page, udf_get_block);
Expand Down Expand Up @@ -145,6 +151,7 @@ const struct address_space_operations udf_aops = {
.readpage = udf_readpage,
.readpages = udf_readpages,
.writepage = udf_writepage,
.writepages = udf_writepages,
.write_begin = udf_write_begin,
.write_end = generic_write_end,
.bmap = udf_bmap,
Expand Down

0 comments on commit bc944bf

Please sign in to comment.