Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250912
b: refs/heads/master
c: 7b1de58
h: refs/heads/master
v: v3
  • Loading branch information
Wu Fengguang authored and Linus Torvalds committed May 25, 2011
1 parent 4520d5b commit 54262b4
Show file tree
Hide file tree
Showing 3 changed files with 8 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: 6d3163ce86dd386b4f7bda80241d7fea2bc0bb1d
refs/heads/master: 7b1de5868b124d8f399d8791ed30a9b679d64d4d
6 changes: 6 additions & 0 deletions trunk/include/linux/pagemap.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,12 @@ static inline struct page *page_cache_alloc_cold(struct address_space *x)
return __page_cache_alloc(mapping_gfp_mask(x)|__GFP_COLD);
}

static inline struct page *page_cache_alloc_readahead(struct address_space *x)
{
return __page_cache_alloc(mapping_gfp_mask(x) |
__GFP_COLD | __GFP_NORETRY | __GFP_NOWARN);
}

typedef int filler_t(void *, struct page *);

extern struct page * find_get_page(struct address_space *mapping,
Expand Down
2 changes: 1 addition & 1 deletion trunk/mm/readahead.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ __do_page_cache_readahead(struct address_space *mapping, struct file *filp,
if (page)
continue;

page = page_cache_alloc_cold(mapping);
page = page_cache_alloc_readahead(mapping);
if (!page)
break;
page->index = page_offset;
Expand Down

0 comments on commit 54262b4

Please sign in to comment.