Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 22483
b: refs/heads/master
c: a564da3
h: refs/heads/master
i:
  22481: d7d4fe8
  22479: 52afa3e
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Mar 22, 2006
1 parent c4a5f8f commit 51e1d24
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 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: d15c023b44e5d323f1f4130b85d29f08e43433b1
refs/heads/master: a564da3964db3256069190c2ae95069143ac37fb
26 changes: 20 additions & 6 deletions trunk/mm/readahead.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,24 @@ static inline unsigned long get_min_readahead(struct file_ra_state *ra)
return (VM_MIN_READAHEAD * 1024) / PAGE_CACHE_SIZE;
}

static inline void reset_ahead_window(struct file_ra_state *ra)
{
/*
* ... but preserve ahead_start + ahead_size value,
* see 'recheck:' label in page_cache_readahead().
* Note: We never use ->ahead_size as rvalue without
* checking ->ahead_start != 0 first.
*/
ra->ahead_size += ra->ahead_start;
ra->ahead_start = 0;
}

static inline void ra_off(struct file_ra_state *ra)
{
ra->start = 0;
ra->flags = 0;
ra->size = 0;
ra->ahead_start = 0;
ra->ahead_size = 0;
reset_ahead_window(ra);
return;
}

Expand Down Expand Up @@ -426,8 +437,7 @@ static int make_ahead_window(struct address_space *mapping, struct file *filp,
* congestion. The ahead window will any way be closed
* in case we failed due to excessive page cache hits.
*/
ra->ahead_start = 0;
ra->ahead_size = 0;
reset_ahead_window(ra);
}

return ret;
Expand Down Expand Up @@ -520,11 +530,11 @@ page_cache_readahead(struct address_space *mapping, struct file_ra_state *ra,
* If we get here we are doing sequential IO and this was not the first
* occurence (ie we have an existing window)
*/

if (ra->ahead_start == 0) { /* no ahead window yet */
if (!make_ahead_window(mapping, filp, ra, 0))
goto out;
goto recheck;
}

/*
* Already have an ahead window, check if we crossed into it.
* If so, shift windows and issue a new ahead window.
Expand All @@ -536,6 +546,10 @@ page_cache_readahead(struct address_space *mapping, struct file_ra_state *ra,
ra->start = ra->ahead_start;
ra->size = ra->ahead_size;
make_ahead_window(mapping, filp, ra, 0);
recheck:
/* prev_page shouldn't overrun the ahead window */
ra->prev_page = min(ra->prev_page,
ra->ahead_start + ra->ahead_size - 1);
}

out:
Expand Down

0 comments on commit 51e1d24

Please sign in to comment.