diff options
author | Jeff Moyer <jmoyer@redhat.com> | 2005-04-16 18:24:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:24:05 -0400 |
commit | d345734267dbec642f4e34a9d392d2fd85b5fa9b (patch) | |
tree | 9a74f4b8292a696620f95933171ac5ddff970ef9 /mm | |
parent | 41aac24f8fb5a21ff3d0f6f56f85fad3cf0e88a9 (diff) |
[PATCH] filemap_getpage can block when MAP_NONBLOCK specified
We will return NULL from filemap_getpage when a page does not exist in the
page cache and MAP_NONBLOCK is specified, here:
page = find_get_page(mapping, pgoff);
if (!page) {
if (nonblock)
return NULL;
goto no_cached_page;
}
But we forget to do so when the page in the cache is not uptodate. The
following could result in a blocking call:
/*
* Ok, found a page in the page cache, now we need to check
* that it's up-to-date.
*/
if (!PageUptodate(page))
goto page_not_uptodate;
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/filemap.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 439b2bea8e34..93595c327bbd 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
@@ -1379,8 +1379,13 @@ retry_find: | |||
1379 | * Ok, found a page in the page cache, now we need to check | 1379 | * Ok, found a page in the page cache, now we need to check |
1380 | * that it's up-to-date. | 1380 | * that it's up-to-date. |
1381 | */ | 1381 | */ |
1382 | if (!PageUptodate(page)) | 1382 | if (!PageUptodate(page)) { |
1383 | if (nonblock) { | ||
1384 | page_cache_release(page); | ||
1385 | return NULL; | ||
1386 | } | ||
1383 | goto page_not_uptodate; | 1387 | goto page_not_uptodate; |
1388 | } | ||
1384 | 1389 | ||
1385 | success: | 1390 | success: |
1386 | /* | 1391 | /* |