patch-2.1.116 linux/mm/filemap.c
Next file: linux/mm/page_alloc.c
Previous file: linux/kernel/sys.c
Back to the patch index
Back to the overall index
- Lines: 41
- Date:
Tue Aug 18 13:21:49 1998
- Orig file:
v2.1.115/linux/mm/filemap.c
- Orig date:
Thu Aug 6 14:06:34 1998
diff -u --recursive --new-file v2.1.115/linux/mm/filemap.c linux/mm/filemap.c
@@ -172,10 +172,12 @@
break;
}
age_page(page);
+#if 0
if (page->age)
break;
if (page_cache_size * 100 < (page_cache.min_percent * num_physpages))
break;
+#endif
if (PageSwapCache(page)) {
delete_from_swap_cache(page);
return 1;
@@ -189,7 +191,7 @@
break;
/* is it a buffer cache page? */
- if ((gfp_mask & __GFP_IO) && bh && try_to_free_buffer(bh, &bh, 6))
+ if (bh && try_to_free_buffer(bh, &bh, 6))
return 1;
break;
@@ -211,8 +213,8 @@
struct page * page;
int count_max, count_min;
- count_max = (limit<<2) >> (priority>>1);
- count_min = (limit<<2) >> (priority);
+ count_max = (limit<<1) >> (priority>>1);
+ count_min = (limit<<1) >> (priority);
page = mem_map + clock;
do {
@@ -327,6 +329,7 @@
*/
page = mem_map + MAP_NR(page_cache);
add_to_page_cache(page, inode, offset, hash);
+ set_bit(PG_referenced, &page->flags);
inode->i_op->readpage(file, page);
page_cache = 0;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov