Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 263168
b: refs/heads/master
c: 9dd75f1
h: refs/heads/master
v: v3
  • Loading branch information
Theodore Ts'o committed Aug 13, 2011
1 parent b80f9c7 commit fdb2f5c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 32c80b32c053dc52712dedac5e4d0aa7c93fc353
refs/heads/master: 9dd75f1f1a02d656a11a7b9b9e6c2759b9c1e946
7 changes: 6 additions & 1 deletion trunk/fs/ext4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,12 @@ static int mpage_da_submit_io(struct mpage_da_data *mpd,
else if (test_opt(inode->i_sb, MBLK_IO_SUBMIT))
err = ext4_bio_write_page(&io_submit, page,
len, mpd->wbc);
else
else if (buffer_uninit(page_bufs)) {
ext4_set_bh_endio(page_bufs, inode);
err = block_write_full_page_endio(page,
noalloc_get_block_write,
mpd->wbc, ext4_end_io_buffer_write);
} else
err = block_write_full_page(page,
noalloc_get_block_write, mpd->wbc);

Expand Down

0 comments on commit fdb2f5c

Please sign in to comment.