mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 09:31:14 +00:00
[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>
This commit is contained in:
parent
41aac24f8f
commit
d345734267
1 changed files with 6 additions and 1 deletions
|
@ -1379,8 +1379,13 @@ retry_find:
|
||||||
* Ok, found a page in the page cache, now we need to check
|
* Ok, found a page in the page cache, now we need to check
|
||||||
* that it's up-to-date.
|
* that it's up-to-date.
|
||||||
*/
|
*/
|
||||||
if (!PageUptodate(page))
|
if (!PageUptodate(page)) {
|
||||||
|
if (nonblock) {
|
||||||
|
page_cache_release(page);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
goto page_not_uptodate;
|
goto page_not_uptodate;
|
||||||
|
}
|
||||||
|
|
||||||
success:
|
success:
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue