Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 242374
b: refs/heads/master
c: 168fc02
h: refs/heads/master
v: v3
  • Loading branch information
Theodore Ts'o committed Feb 26, 2011
1 parent 8ed49a2 commit 952c3e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 23 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: 78aaced3408141bb7c836f2db0ca435790399da5
refs/heads/master: 168fc0223c0e944957b1f31d88c2334fc904baf1
29 changes: 7 additions & 22 deletions trunk/fs/ext4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -2714,22 +2714,26 @@ static int ext4_da_writepages_trans_blocks(struct inode *inode)
/*
* write_cache_pages_da - walk the list of dirty pages of the given
* address space and accumulate pages that need writing, and call
* mpage_da_map_and_submit to map the pages and then write them.
* mpage_da_map_and_submit to map a single contiguous memory region
* and then write them.
*/
static int write_cache_pages_da(struct address_space *mapping,
struct writeback_control *wbc,
struct mpage_da_data *mpd,
pgoff_t *done_index)
{
struct buffer_head *bh, *head;
struct inode *inode = mpd->inode;
struct inode *inode = mapping->host;
struct pagevec pvec;
unsigned int nr_pages;
sector_t logical;
pgoff_t index, end;
long nr_to_write = wbc->nr_to_write;
int i, tag, ret = 0;

memset(mpd, 0, sizeof(struct mpage_da_data));
mpd->wbc = wbc;
mpd->inode = inode;
pagevec_init(&pvec, 0);
index = wbc->range_start >> PAGE_CACHE_SHIFT;
end = wbc->range_end >> PAGE_CACHE_SHIFT;
Expand Down Expand Up @@ -2794,16 +2798,8 @@ static int write_cache_pages_da(struct address_space *mapping,

BUG_ON(PageWriteback(page));

if (mpd->next_page != page->index) {
/*
* Start next extent of pages and blocks
*/
if (mpd->next_page != page->index)
mpd->first_page = page->index;
mpd->b_size = 0;
mpd->b_state = 0;
mpd->b_blocknr = 0;
}

mpd->next_page = page->index + 1;
logical = (sector_t) page->index <<
(PAGE_CACHE_SHIFT - inode->i_blkbits);
Expand Down Expand Up @@ -2975,9 +2971,6 @@ static int ext4_da_writepages(struct address_space *mapping,
wbc->nr_to_write = desired_nr_to_write;
}

mpd.wbc = wbc;
mpd.inode = mapping->host;

retry:
if (wbc->sync_mode == WB_SYNC_ALL)
tag_pages_for_writeback(mapping, index, end);
Expand Down Expand Up @@ -3008,14 +3001,6 @@ static int ext4_da_writepages(struct address_space *mapping,
* contiguous region of logical blocks that need
* blocks to be allocated by ext4 and submit them.
*/
mpd.b_size = 0;
mpd.b_state = 0;
mpd.b_blocknr = 0;
mpd.first_page = 0;
mpd.next_page = 0;
mpd.io_done = 0;
mpd.pages_written = 0;
mpd.retval = 0;
ret = write_cache_pages_da(mapping, wbc, &mpd, &done_index);
/*
* If we have a contiguous extent of pages and we
Expand Down

0 comments on commit 952c3e1

Please sign in to comment.