The patch titled readahead-call-scheme fix has been added to the -mm tree. Its filename is readahead-call-scheme-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: readahead-call-scheme fix From: Mike Galbraith <efault@xxxxxx> On Thu, 2006-08-10 at 02:19 -0700, Andrew Morton wrote: > It would be interesting to try disabling CONFIG_ADAPTIVE_READAHEAD - > perhaps that got broken. A typo was pinning pagecache. Fixes leak encountered with rpm -qaV. Signed-off-by: Mike Galbraith <efault@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/filemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/filemap.c~readahead-call-scheme-fix mm/filemap.c --- a/mm/filemap.c~readahead-call-scheme-fix +++ a/mm/filemap.c @@ -1471,7 +1471,7 @@ retry_find: page_cache_readahead_adaptive(mapping, ra, file, NULL, NULL, pgoff, pgoff, pgoff + 1); - page = find_lock_page(mapping, pgoff); + page = find_get_page(mapping, pgoff); } else if (PageReadahead(page)) { page_cache_readahead_adaptive(mapping, ra, file, NULL, page, _ Patches currently in -mm which might be from efault@xxxxxx are readahead-call-scheme-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html